show databases and tables in MySQL
mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | django_db | | mysql | | performance_schema | | sys | | test | +--------------------+ 6 rows in set (0.52 sec) mysql> use test; Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Database changed mysql> show tables; +----------------------------+ | Tables_in_test | +----------------------------+ | auth_group ...