MySQL Holen Sie sich nur die Feldnamen in einer Tabelle

SELECT column_name
FROM information_schema.columns
WHERE  table_name = 'your_table'
   AND table_schema = 'database_name'
Jolly Jay