字段的属性值

mysql怎么查看字段的属性值
数据库

mysql怎么查看字段的属性值

888 0

mysql查看字段属性值的方法:1、查询数据库中某个库所有字段的属性【table_schema= '数据库库名'】;2、查询数据库中指定库指定表所有字段的属性【table_schema= '数据库库名' and table_name= 】。mysql查看字段属性值的方法:1、查询数据库中某个库所有字段的属性(指定数据库库名),若想查询所有去掉where条件即可12select * from information_schema.columns where table_schema= '数据库库名'2、查询