To list tables in an Oracle database, you can use the following SQL query:
SELECT table_name FROM user_tables;
This command will return a list of all tables owned by the current user. If you want to see tables from all users, you can use:
SELECT table_name FROM all_tables;
Let me know if you need further assistance!
