write mysql command that will be used to show all the databases which is already created in mysql
Answers
Answered by
1
Answer:
Show command is used to see existing tables or DB in MYsql.
Explanation:
for table - show(table name);
for DB list - show databases;
Similar questions