Can someone help me with this.
I have my Select query
selectAttendance = \"\"\"SELECT * FROM table \"\"\"
And I want the content o
Hi all thank you for answering. I finally found out how to make it. here is the code
w = csv.writer(file(r'test.csv','wb'), delimiter=';') w.writerows([["Bio Id","Last Name",.....]]) w.writerows(db.session.execute(selectAttendance)) db.session.commit()