分享好友 站长动态首页 网站导航

MySQL关于查找模式对象的语句

2022-07-06 06:00 · 头闻号数据库

在日常工作中,搜索特定的数据库对象,是最常见的一个工作,下面分享几个关于mysql模式查找的语句。

1. 在 MySQL 数据库中查找名称中包含数字的表

select table_schema as database_name,
table_name
from information_schema.tables
where table_type = 'base TABLE'
and table_name rlike ('[0-9]')
order by table_schema,
table_name;

说明:

2. 在 MySQL 数据库中查找关于特定列名的表

select tab.table_schema as database_name,
tab.table_name
from information_schema.tables as tab
inner join information_schema.columns as col
on col.table_schema = tab.table_schema
and col.table_name = tab.table_name
where tab.table_type = 'base TABLE'
and column_name = 'idcity'
order by tab.table_schema,
tab.table_name;

说明:

3. 在 MySQL 数据库中查找没有特定名称的列的表

select tab.table_schema as database_name,
tab.table_name
from information_schema.tables tab
left join information_schema.columns col
on tab.table_schema = col.table_schema
and tab.table_name = col.table_name
and col.column_name = 'id' -- put column name here
where tab.table_schema not in ('information_schema', 'mysql',
'performance_schema', 'sys')
and tab.table_type = 'base TABLE'
and col.column_name is null
order by tab.table_schema,
tab.table_name;

说明:

免责声明:本平台仅供信息发布交流之途,请谨慎判断信息真伪。如遇虚假诈骗信息,请立即举报

举报
反对 0
打赏 0
更多相关文章

评论

0

收藏

点赞