SyntaxFix
Write A Post
Hire A Developer
Questions
You can also do this to just get the field titles:
table = cursor.description check = 0 for fields in table: for name in fields: if check < 1: print(name), check +=1 check =0