0

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?

  • 1
    What's your sql database server and where is it running? – Bernard Wei Jul 23 '18 at 20:53
  • 1
    This question needs a lot of clarification. I can get to where I can view databases in my sql which exact step you get stuck at ? is it show 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

1 Answers1

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;

See Getting Information About Databases and Tables

steeldriver
  • 136,215
  • 21
  • 243
  • 336