Answers for "how to show table columns in mysql"

SQL
6

show table columns mysql command line

SHOW COLUMNS from tablename;
Posted by: Guest on April-21-2021
2

get the mysql table columns data type mysql

SHOW COLUMNS FROM mydb.mytable;
Posted by: Guest on April-16-2020
0

mysql all columns

-- MySQL
SELECT * 
FROM INFORMATION_SCHEMA.COLUMNS;
Posted by: Guest on May-15-2020
2

mysql show table fields

DESCRIBE my_table;
Posted by: Guest on October-25-2020

Code answers related to "how to show table columns in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language