MySQLのデータベース一覧をMySQLコマンドで表示する方法
MySQLのデータベース一覧をMySQLコマンドで表示するには、「show databases;」を実行する。
《実行例》
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| neko |
| test |
+--------------------+
3 rows in set (0.00 sec)
※「databases」は複数形なので、単数形の「database」と入力して実行すると以下のようなエラーになるので注意。
mysql> show database;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'database' at line 1
show database;ではなく、
show databases;となるので注意。