跳到主要内容
跳到主要内容

SHOW-DATABASES

SHOW-DATABASES

Name

SHOW DATABASES

Description

该语句用于展示当前可见的 db

语法:

SHOW DATABASES [FROM catalog] [filter expr];

说明:

  1. SHOW DATABASES 会展示当前所有的数据库名称.
  2. SHOW DATABASES FROM catalog 会展示catalog中所有的数据库名称.
  3. SHOW DATABASES filter_expr 会展示当前所有经过过滤后的数据库名称.
  4. SHOW DATABASES FROM catalog filter_expr 这种语法不支持.

Example

  1. 展示当前所有的数据库名称.

    SHOW DATABASES;
    +--------------------+
    | Database |
    +--------------------+
    | test |
    | information_schema |
    +--------------------+
  2. 会展示hms_catalog中所有的数据库名称.

    SHOW DATABASES from hms_catalog;
    +---------------+
    | Database |
    +---------------+
    | default |
    | tpch |
    +---------------+
  3. 展示当前所有经过表示式like 'infor%'过滤后的数据库名称.

    SHOW DATABASES like 'infor%';
    +--------------------+
    | Database |
    +--------------------+
    | information_schema |
    +--------------------+

Keywords

SHOW, DATABASES

Best Practice