show table schema mysql code example
Example 1: mysql show table structure
DESCRIBE table_name; # To show table structure...
Example 2: mysql show schema
describe [db_name.]table_name;
Example 3: mysql show schema
show create table [db_name.]table_name;
Example 4: show tables mysql
Press CTRL+C to copy SHOW [EXTENDED] [FULL] TABLES
[{FROM | IN} db_name]
[LIKE 'pattern' | WHERE expr]