I'd like to pull a table's field names from MySql into python, and I know that
'show columns from project'
will work. And I've read that you can add 'WHERE ...' to restrict it to just certain fields. But I can't find an example of how to return just the names of the columns, and not Type, Key, Null, Extra information.
What is the matching criteria to pull all field names for columns and none of the other description stuff?