create table users (pkid int auto_increment primary key,...)
表创建完成后设置递增ID:
alter table users add pkid int auto_increment primary key
注意:自增字段,一定要设置为primary key.
很多时候不希望pkId从1开始,我们可能希望他从10000开始:
alter table users AUTO_INCREMENT=10000
4
你也可以修改现有的递增值, 比如大批量删除数据后,想id从654321退回123456开始:
alter table users AUTO_INCREMENT=123456
这种批量修改的功能用一句SQL是不能实现的。update shopex_orders set cost_mony='91.56' where order_id=20101030097022update shopex_orders set cost_mony=262.66' where order_id=20101030109316update shopex_orders set cost_mony='-199.44' where order_id=20101030105619update shopex_orders set cost_mony='128.36' where order_id=20101030104710update shopex_orders set cost_mony='147.9' where order_id=20101030102239update user set age=cast((id-1)/5+1 as unsigned)有id, name两个字段,其中id是主键,或者是唯一的字段
REPLACE t1 (id, ', name) VALUES(1, name) VALUES(1:id不存在是就插入一条, 'alan')
多条情况:
REPLACE t1 (idalan'), (2, 'lstt',存在是就自动删除原来的), (3, 'ssnl')
原理是,再插入新的
所以假设两个表结构完全相同。不同的话就需要指明所有的列。
Replace table2 Select * From table1
假设表名叫t1
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)