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
SELECT column_name FROM information_schema.columns WHERE table_name = 'your_table' AND table_schema = 'database_name'