Oracle:
SELECT TABLE_NAME FROM USER_TABLES
mysql:
SELECT
table_name
FROM
information_schema.tables
WHERE TABLE_SCHEMA = ‘yourdatabase’
AND table_type = ‘base table’
Oracle:
SELECT TABLE_NAME FROM USER_TABLES
mysql:
SELECT
table_name
FROM
information_schema.tables
WHERE TABLE_SCHEMA = ‘yourdatabase’
AND table_type = ‘base table’