oracle get all table names code example
Example 1: show all tables in oracle
SELECT * FROM ALL_TABLES;
Example 2: SELECT table_name FROM user_tables;
SELECT
table_name, owner
FROM
all_tables
ORDER BY
owner, table_name
Example 3: SELECT table_name FROM user_tables;
SELECT
table_name, owner
FROM
user_tables
ORDER BY
owner, table_name
Example 4: oracle all tables
-- NOTE: for Oracle ONLY
select *
from all_tables;