English, asked by criclover1305, 1 day ago

write SQL COMMAND to show all tha tables in the database​

Answers

Answered by 9107bhawna
0

Answer:

Then issue one of the following SQL statement:

Show all tables owned by the current user:

SELECT table_name FROM user_tables;

Show all tables in the current database: SELECT table_name FROM dba_tables;

Show all tables that are accessible by the current user:

Similar questions