MONTRER LES TABLES [DE nomdelabase] [COMME "test%"];
(in console MYSQL 5.6)show databases; ==> to display all databasesconnect [database name] ==> to connect to the specified database show tables; ==> to display all tablesDescribe [table name] ==> to describe a table in the selected database
in oracle:
List the tables of the current user's schema:
SELECT table_name FROM user_tables
List the tables accessible by the user:
SELECT table_name FROM all_tables
List all tables (you must be ADMIN):
SELECT table_name FROM dba_tables