哪些MySQL查询可以使用,哪些帮助我们可以查看MySQL数据库列表?

借助以下MySQL查询,我们可以看到MySQL数据库列表-

mysql> SELECT schema_name FROM information_schema.schemata;

+--------------------+

| schema_name        |

+--------------------+

| information_schema |

| gaurav             |

| mysql              |

| performance_schema |

| query              |

| query1             |

| sys                |

| tutorials          |

+--------------------+

8 rows in set (0.00 sec)

我们还可以在此查询中使用WHERE子句,如下所示:

mysql> SELECT schema_name FROM information_schema.schemata WHERE schema_name LIKE '%schema' OR schema_name LIKE '%s';

+--------------------+

| schema_name        |

+--------------------+

| information_schema |

| performance_schema |

| sys                |

| tutorials          |

+--------------------+

4 rows in set (0.00 sec)

以上是 哪些MySQL查询可以使用,哪些帮助我们可以查看MySQL数据库列表? 的全部内容, 来源链接: utcz.com/z/331418.html

回到顶部