John Topley's KnowledgebaseSQL Statement To List Tables Within Current SchemaFriday, 10 September 2004This Oracle SQL statement will display the names of all the tables within the current user's schema. SELECT table_name FROM user_tables; To display the names of all the tables that the current user has access to, use: SELECT table_name FROM all_tables; |
![]() |

