mysql怎么获取表中属性值 mysql获取表字段

主机教程 建站分享 2年前 (2022-12-18) 185次浏览

文章摘要:mysql怎么获取表中属性值 mysql获取表字段

mysql获取表属性值的方法 1.查询数据表中所有字段的属性 select * from informatio […]

mysql获取表属性值的方法

1.查询数据表中所有字段的属性

select * from information_schema.columns

where table_schema= '数据库库名' and table_name = '表名'

2.查询数据库中所有字段的属性

select * from information_schema.columns

where table_schema= '数据库库名'

3.查询数据库中特定列条件字段的属性

select table_schema,table_name,column_name,column_type,column_comment

from information_schema.columns

where TABLE_SCHEMA='数据库名' and column_name = '字段名';


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:mysql怎么获取表中属性值 mysql获取表字段
文章链接:http://www.7966.org/post/14658.html
转载请注明出处

喜欢 (0)