sql语句
1 select column_key 2 from information_schema.columns 3 where table_schema=‘数据库名称‘ and table_name=‘数据表名称‘ and column_name=‘字段名‘;
返回值为:
PRI------->主键约束;
UNI------->唯一约束;
MUL------>可以重复;
空。
2021-08-13 04:25:53
sql语句
1 select column_key 2 from information_schema.columns 3 where table_schema=‘数据库名称‘ and table_name=‘数据表名称‘ and column_name=‘字段名‘;
返回值为:
PRI------->主键约束;
UNI------->唯一约束;
MUL------>可以重复;
空。