Answers for "how to show table schema in mysql"

SQL
4

mysql show table structure

DESCRIBE table_name; # To show table structure...
Posted by: Guest on May-04-2020
1

mysql show schema

describe [db_name.]table_name;
Posted by: Guest on June-01-2020
0

mysql show schema

show create table [db_name.]table_name;
Posted by: Guest on June-01-2020

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

Code answers related to "SQL"

Browse Popular Code Answers by Language