gpt4 book ai didi

mysql - 如何在Mysql中查找相似命名的数据库

转载 作者:太空宇宙 更新时间:2023-11-03 12:28:19 24 4
gpt4 key购买 nike

我需要查明我的数据库设置中是否有任何类似命名的数据库 - 例如“BusApp”、“BusApp2”、“BusAppTrial”等。

我知道我可以执行“show databases”命令并检查输出。但我需要从 shell 文件中检查它。因此,我正在寻找一些类似的 SQL:

SELECT count(*) from information_schema.XXX where DBName like 'BusAp%'

谁能帮帮我?

提前致谢

最佳答案

SELECT table_schema
from information_schema.tables
where table_schema like 'BusAp%'
group by table_schema

SQLFiddle demo

关于mysql - 如何在Mysql中查找相似命名的数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16659228/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com