Answers for "mysql column names of a table"

SQL
1

MySql get fields of table

SELECT COLUMN_NAME
  FROM INFORMATION_SCHEMA.COLUMNS
  WHERE TABLE_SCHEMA = 'my_database' AND TABLE_NAME = 'my_table';
Posted by: Guest on November-03-2020
0

mysql to get column name in database

SELECT table_name, column_name from information_schema.columns WHERE column_name LIKE '%column_name_to_search%';
Posted by: Guest on October-30-2020

Code answers related to "mysql column names of a table"

Code answers related to "SQL"

Browse Popular Code Answers by Language