I\'m not asking for the SHOW COLUMNS command.
SHOW COLUMNS
I want to create an application that works similarly to heidisql, where you can specify an SQL query and w
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