Answers for "oracle select all table"

SQL
5

show all tables in oracle

SELECT * FROM ALL_TABLES;
Posted by: Guest on November-20-2020
3

SELECT table_name FROM user_tables;

SELECT
  table_name, owner
FROM
  all_tables
ORDER BY
  owner, table_name
Posted by: Guest on March-07-2020

Code answers related to "oracle select all table"

Code answers related to "SQL"

Browse Popular Code Answers by Language