show tables code example
Example 1: mysql show all tables
show tables;
Example 2: mariadb show tables
SHOW TABLES FROM database
Example 3: sql show tables
Showing all table:
show tables;
Showing table data:
SELECT
* or column_names
FROM
table_name;
Example 4: mysql command show tables
SHOW TABLES;
Example 5: mysql command show tables
mysql -u user -p
Example 6: show tables mysql
Press CTRL+C to copy SHOW [EXTENDED] [FULL] TABLES
[{FROM | IN} db_name]
[LIKE 'pattern' | WHERE expr]