2020年12月1日

列的约束

摘要: 1.主键约束(Primary Key) *约束是对表格列中的值起限定作用 *每一个表格只有一个列可以设置为主键 *主键约束通常用来标记表格中的一条数据唯一存在(现实中记录两条一模一样的数据是没有意义的) *唯一性,非空性。被设置为主键的列,不能重复,不能为空null *主键约束属于对表结构进行修改, 阅读全文

posted @ 2020-12-01 17:20 刀锋93 阅读(195) 评论(0) 推荐(0) 编辑

ERROR 1075 (42000): Incorrect table definition; there can be only one auto column and it must be defined as a key

摘要: 删除主键约束时报错, alter table 表名 drop primary key; 原因:因为设置了自增,需要先删除自增 删除自增:alter table 表名 modify 列 类型(长度); 添加自增:alter table 表名 modify 列 类型(长度) auto_increment 阅读全文

posted @ 2020-12-01 17:17 刀锋93 阅读(1402) 评论(0) 推荐(0) 编辑

导航