mysql查看所有的数据库

 mysql查看所有的数据库
C:Windowssystem32>mysql -u root -p
Enter password: ******
 mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
| test_first         |
 

原文地址:https://www.cnblogs.com/zhishifx/p/12206783.html