Answers for "mysql get only the field names in a table"

SQL
0

mysql get only the field names in a table

SELECT column_name
FROM information_schema.columns
WHERE  table_name = 'your_table'
   AND table_schema = 'database_name'
Posted by: Guest on September-23-2021

Code answers related to "mysql get only the field names in a table"

Code answers related to "SQL"

Browse Popular Code Answers by Language