In SQL, write the query to display the list of tables stored in a database.
Answers
Answered by
7
Answer:
use database name;
show tables;
Answered by
14
Answer:
SHOW TABLES;
is the query which is used to see the tables in the created and databases, but before seeing it should be used... so the syntax/query will be " use database_name; " . So, it will help you to give the all tables....
Hope you may get it
Mark as brainliest
Thank You...
Similar questions