MySQL Show Tables in Database
show tables;
Easy Eland
show tables;
DESCRIBE table_name; # To show table structure...
use database_name;
show tables;
Code language: SQL (Structured Query Language) (sql)