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
Pipe the answer to awk:
SHOW columns FROM project; | awk '{ print $1 }'