mysql查询所有数据库、表、字段常用sql语句

  • 查询所有数据库名称:
SELECT `SCHEMA_NAME` 
FROM `information_schema`.`SCHEMATA`

  • 查询特定数据库下的所有表
//查询数据库名称为lml下的所有表
select table_name
from information_schema.tables
where table_schema='lml' ;

  • 查询特定表下的所有字段
select COLUMN_NAME 
from information_schema.COLUMNS 
where table_name = 'your_table_name' and table_schema = 'your_db_name';  

有兴趣的老爷,可以关注我的公众号【一起收破烂】,回复【006】获取2021最新java面试资料以及简历模型120套哦~
在这里插入图片描述

你可能感兴趣的:(mysql,mysql数据库查询)