Home > Database > Mysql Tutorial > How to query all databases in mysql

How to query all databases in mysql

青灯夜游
Release: 2021-12-07 10:21:58
Original
39275 people have browsed it

Mysql method of querying all databases: 1. Use the MySQL client to log in to the MySQL database server; 2. Directly execute the "SHOW DATABASES;" or "SHOW SCHEMAS;" command to list all databases.

How to query all databases in mysql

The operating environment of this tutorial: windows7 system, mysql8 version, Dell G3 computer.

To list all databases on the MySQL server host, use the SHOW DATABASES command as follows:

SHOW DATABASES;
Copy after login

For example, to list the local MySQL database server For all databases, please first log in to the database server as follows:

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>
Copy after login

Then use the SHOW DATABASES command:

mysql> SHOW DATABASES;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| crmdb              |
| mysql              |
| newdb              |
| performance_schema |
| testdb             |
| yiibaidb           |
| yiibaidb_backup    |
+--------------------+
8 rows in set
Copy after login

SHOW SCHEMAS command is a synonym for SHOW DATABASES, so the following command will return the same results as above:

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

If you want to query the database matching a specific pattern, use the LIKE sub Sentence, as shown below:

SHOW DATABASES LIKE pattern;
Copy after login

For example, the following statement returns the database ending with the string "schema";

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

It is important to note that if the MySQL database If the server is started with -skip-show-database, the SHOW DATABASES statement cannot be used unless you have the SHOW DATABASES permission.

[Related recommendations: mysql video tutorial]

The above is the detailed content of How to query all databases in mysql. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
MySQL stops process
From 1970-01-01 08:00:00
0
0
0
Error when installing mysql on linux
From 1970-01-01 08:00:00
0
0
0
phpstudy cannot start mysql?
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template