mysql怎么查看表字段属性 mysql查询表字段属性

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

文章摘要:mysql怎么查看表字段属性 mysql查询表字段属性

mysql查看表字段属性的方法: 示例: select column_name,column_com […]

mysql查看表字段属性的方法:

示例:

select column_name,column_comment,data_type

from information_schema.columns

where table_name='查询表名称' and table_schema='数据库名称'

语法格式:

desc 表名;

show columns from 表名;

describe 表名;

sql语句显示方法:

show create table 表名;


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

喜欢 (0)