xxxxxxxxxx
SELECT TABLE_NAME
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_TYPE = 'BASE TABLE' AND TABLE_CATALOG='YOUR_Database_name'
xxxxxxxxxx
SELECT table_name
FROM information_schema.tables
WHERE table_schema = 'your_database_name';
xxxxxxxxxx
BY LOVE SINGH on May 19 2020
SELECT TABLE_NAME
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_TYPE = 'BASE TABLE' AND TABLE_CATALOG='YOUR_Database_name'
xxxxxxxxxx
SELECT table_name
FROM information_schema.tables
WHERE table_schema = 'your_database_name'
AND table_type = 'BASE TABLE';