모든 데이터베이스를 쿼리하는 Mysql 방법: 1. MySQL 클라이언트를 사용하여 MySQL 데이터베이스 서버에 로그인합니다. 2. "SHOW DATABASES;" 또는 "SHOW SCHEMAS;" 명령을 직접 실행하여 모든 데이터베이스를 나열합니다.
이 튜토리얼의 운영 환경: windows7 시스템, mysql8 버전, Dell G3 컴퓨터.
MySQL 서버 호스트의 모든 데이터베이스를 나열하려면 아래와 같이 SHOW DATABASES
명령을 사용하세요. SHOW DATABASES
命令,如下所示:
SHOW DATABASES;
例如,要列出本地MySQL数据库服务器中的所有数据库,请首先登录到数据库服务器,如下所示:
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
的同义词,因此以下命令将返回与上述相同的结果:
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
rrreee
rrreee그런 다음 SHOW DATABASES
명령을 사용하세요: rrreee
SHOW SCHEMAS
명령은 SHOW DATABASES
와 동의어입니다. 따라서 다음 명령은 위와 동일한 결과를 반환합니다. 🎜rrreee🎜 특정 패턴과 일치하는 데이터베이스를 쿼리하려면 다음과 같이 LIKE
절을 사용합니다. 🎜rrreee🎜예를 들어 다음 명령문은 다음과 같습니다. 문자열 "schema
"로 끝나는 데이터베이스를 반환합니다. 🎜rrreee🎜MySQL 데이터베이스 서버가 -skip-show-database
로 시작된 경우에는 >SHOW DATABASES
권한이 없으면 사용할 수 없습니다. 그렇지 않으면 SHOW DATABASES
문을 사용할 수 없습니다. 🎜🎜【관련 추천: 🎜mysql 비디오 튜토리얼🎜】🎜위 내용은 mysql의 모든 데이터베이스를 쿼리하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!