sql查询字段
Posted 王六六的IT日常
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql查询字段相关的知识,希望对你有一定的参考价值。
1.查询指定数据库中包含指定字段的表
SELECT * FROM information_schema.columns WHERE column_name= 'utime' AND TABLE_SCHEMA = 'personas_group';
2.mysql 查询指定数据库所有表名
写法如下:
select table_name from information_schema.tables where table_schema=‘当前数据库’
3.查询指定数据表的全部字段名称,写法为:
select COLUMN_NAME
from information_schema.COLUMNS
where table_name = '表名'
and table_schema = '数据库名';
SELECT COLUMN_NAME
FROM information_schema.COLUMNS
WHERE table_name = 'user_group'
AND table_schema = 'personas_group';
开发者涨薪指南
48位大咖的思考法则、工作方式、逻辑体系
以上是关于sql查询字段的主要内容,如果未能解决你的问题,请参考以下文章