I can get to where I can view databases in my sql, however I want to see what is in those databases? what is my next command?
Asked
Active
Viewed 106 times
0
1 Answers
0
Assuming you have got as far as
show databases;
then the next step would be to choose a specific database
use database_name;
show tables;

steeldriver
- 136,215
- 21
- 243
- 336
I can get to where I can view databases in my sql
which exact step you get stuck at ? is itshow databases;
statement as in steeldriver's answer ?want to see what is in those databases
, what exactly you want to see ? list of tables ? dump whole database contents ? – Sergiy Kolodyazhnyy Jul 23 '18 at 21:03