mysql show todas las tablas
show tables;
Easy Eland
show tables;
DESCRIBE table_name; # To show table structure...
DESCRIBE my_table;
DESCRIBE table_name; /* List all columns of a database's table*/
use database_name;
show tables;
Code language: SQL (Structured Query Language) (sql)
[email protected]