概述
本教程操作环境:windows7系统、mysql8版本、Dell G3电脑。
要列出MySQL服务器主机上的所有数据库,请使用SHOW DATABASES
命令,如下所示:
SHOW DATABASES;
登录后复制
例如,要列出本地MySQL数据库服务器中的所有数据库,请首先登录到数据库服务器,如下所示:
C:UsersAdministrator>mysql -u root -p
Enter password: ******
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 7
Server version: 5.7.9 MySQL Community Server (GPL)
Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.
mysql>
登录后复制
然后使用SHOW DATABASES
命令:
mysql> SHOW DATABASES;
+--------------------+
| Database |
+--------------------+
| information_schema |
| crmdb |
| mysql |
| newdb |
| performance_schema |
| testdb |
| yiibaidb |
| yiibaidb_backup |
+--------------------+
8 rows in set
登录后复制
SHOW SCHEMAS
命令是SHOW DATABASES
的同义词,因此以下命令将返回与上述相同的结果:
mysql> SHOW SCHEMAS;
+--------------------+
| Database |
+--------------------+
| information_schema |
| crmdb |
| mysql |
| newdb |
| performance_schema |
| testdb |
| yiibaidb |
| yiibaidb_backup |
+--------------------+
8 rows in set
登录后复制
如果要查询与特定模式匹配的数据库,请使用LIKE
子句,如下所示:
SHOW DATABASES LIKE pattern;
登录后复制
例如,以下语句返回以字符串“schema
”结尾的数据库;
mysql> SHOW DATABASES LIKE '%schema';
+--------------------+
| Database (%schema) |
+--------------------+
| information_schema |
| performance_schema |
+--------------------+
2 rows in set
登录后复制
重要的是要注意,如果MySQL数据库服务器以-skip-show-database
启动,则除非具有SHOW DATABASES
权限,否则不能使用SHOW DATABASES
语句。
【相关推荐:mysql视频教程】
以上就是mysql怎么查询所有数据库的详细内容,更多请关注靠谱客其它相关文章!
最后
以上就是结实盼望为你收集整理的mysql怎么查询所有数据库的全部内容,希望文章能够帮你解决mysql怎么查询所有数据库所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复