mysql查看字段属性值的方法1、查询数据库中某个库所有字段的属性【table_schema 数据库库名】2、查询数据库中指定库指定表所有字段的属性【table_schema 数据库库名 and table_name 】。
mysql查看字段属性值的方法
1、查询数据库中某个库所有字段的属性(指定数据库库名)若想查询所有去掉where条件即可select * from information_schema.columns
where table_schema 数据库库名
2、查询数据库中指定库指定表所有字段的属性(指定数据库库名和表名)select * from information_schema.columns
where table_schema 数据库库名 and table_name 表名
3、查询数据库中特定列条件为某个字段名的属性select table_schema,table_name,column_name,column_type,column_comment
from information_schema.columns
where TABLE_SCHEMA数据库名 and column_name 字段名;
4、查询数据库中特定列(如字段名、字段类型长度大小、字段注释等)select table_schema,table_name,column_name,column_type,column_comment from information_schema.columns
where table_schema 数据库库名table_schema数据库库名
table_name表名
column_name字段名
column_type字段属性(包含字段类型和长度)
column_comment 字段注释(字段说明)
data_type字段类型
column_key字段的主键(PRI为主键)
is_nullable字段是否为空更多相关免费学习推荐mysql教程(视频)