This will allow you to quickly and easily select a list of column names from a MySQL table.
SELECT distinct column_name
FROM information_schema.columns
WHERE table_name='{YOUR TABLE NAME}'
This will allow you to quickly and easily select a list of column names from a MySQL table.
SELECT distinct column_name
FROM information_schema.columns
WHERE table_name='{YOUR TABLE NAME}'