Loading

MySQL查询数据库中含有某一列名的表

sql

SELECT 
DISTINCT table_name
FROM information_schema.columns
WHERE 
table_schema = 'xxx' and column_name='xxx';

 

information_schema 介绍

information_schema 数据库是MySQL自带的,它提供了访问数据库元数据的方式。

常用:

SCHEMATA表:提供了当前mysql实例中所有数据库的信息。是show databases的结果取之此表。

TABLES表:提供了关于数据库中的表的信息(包括视图)。详细表述了某个表属于哪个schema,表类型,表引擎,创建时间等信息。是show tables from schemaname的结果取之此表。

COLUMNS表:提供了表中的列信息。详细表述了某张表的所有列以及每个列的信息。是show columns from schemaname.tablename的结果取之此表。

 

参考

https://blog.csdn.net/weixin_44688581/article/details/114264433

https://www.cnblogs.com/yachao1120/p/12058836.html

posted @ 2023-02-22 15:55  李旭2018  阅读(242)  评论(0编辑  收藏  举报