约束条件:自增长 auto_increment
Posted nanjo4373977
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了约束条件:自增长 auto_increment相关的知识,希望对你有一定的参考价值。
使用auto_increment的前提是该字段必须是一个key(unique key或primary key)
create table t3( id int primary key auto_increment, name char(6) );
因为id是自增长的,所以插入记录时只需要插入name
insert into t3(name) values ("egon"), ("csk"), ("alex");
此时删除表需要用 truncate
truncate t3;
如果用delete不能删除自增的ID
以上是关于约束条件:自增长 auto_increment的主要内容,如果未能解决你的问题,请参考以下文章