mysql get only the field names in a table

Solutions on MaxInterview for mysql get only the field names in a table by the best coders in the world

showing results for - "mysql get only the field names in a table"
Marlene
03 Apr 2017
1SELECT column_name
2FROM information_schema.columns
3WHERE  table_name = 'your_table'
4   AND table_schema = 'database_name'
5
similar questions
queries leading to this page
mysql get only the field names in a table