真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

mysql如何查詢所有數(shù)據(jù)庫

這篇文章主要介紹了MySQL如何查詢所有數(shù)據(jù)庫,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

創(chuàng)新互聯(lián)主營奈曼網(wǎng)站建設的網(wǎng)絡公司,主營網(wǎng)站建設方案,APP應用開發(fā),奈曼h5微信小程序搭建,奈曼網(wǎng)站營銷推廣歡迎奈曼等地區(qū)企業(yè)咨詢

mysql查詢所有數(shù)據(jù)庫的方法:1、使用MySQL客戶端登錄到MySQL數(shù)據(jù)庫服務器;2、直接執(zhí)行“SHOW DATABASES;”或“SHOW SCHEMAS;”命令即可列出所有數(shù)據(jù)庫。

本教程操作環(huán)境:windows7系統(tǒng)、mysql8版本、Dell G3電腦。

要列出MySQL服務器主機上的所有數(shù)據(jù)庫,請使用SHOW DATABASES命令,如下所示:

SHOW DATABASES;

例如,要列出本地MySQL數(shù)據(jù)庫服務器中的所有數(shù)據(jù)庫,請首先登錄到數(shù)據(jù)庫服務器,如下所示:

C:\Users\Administrator>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的同義詞,因此以下命令將返回與上述相同的結(jié)果:

mysql> SHOW SCHEMAS;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| crmdb              |
| mysql              |
| newdb              |
| performance_schema |
| testdb             |
| yiibaidb           |
| yiibaidb_backup    |
+--------------------+
8 rows in set

如果要查詢與特定模式匹配的數(shù)據(jù)庫,請使用LIKE子句,如下所示:

SHOW DATABASES LIKE pattern;

例如,以下語句返回以字符串“schema”結(jié)尾的數(shù)據(jù)庫;

mysql> SHOW DATABASES LIKE '%schema';
+--------------------+
| Database (%schema) |
+--------------------+
| information_schema |
| performance_schema |
+--------------------+
2 rows in set

重要的是要注意,如果MySQL數(shù)據(jù)庫服務器以-skip-show-database啟動,則除非具有SHOW DATABASES權限,否則不能使用SHOW DATABASES語句。

感謝你能夠認真閱讀完這篇文章,希望小編分享的“mysql如何查詢所有數(shù)據(jù)庫”這篇文章對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián),關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關知識等著你來學習!


網(wǎng)站名稱:mysql如何查詢所有數(shù)據(jù)庫
標題URL:http://weahome.cn/article/pejipp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部