我需要用一些像:
INSERT into tablename(id)
SELECT max(id) + 1
FROM tablename
其中
id
小于1000且if max(id) = 1000 insert next id as 1
,因此列从1-1000填充并重新开始。我可以拥有和自动增加主键列。
任何帮助都将不胜感激。
我不是一个SQL专家,但是通过下面的注释,我在Delphi中完成了这项工作,Delphi是执行SQL的地方。我仍然想知道如何在MYSQL中完成这一切,也许这里的一位大师可以帮助解决这个问题。
我就是这么做的:
procedure TForm11.Button1Click(Sender: TObject);
var
lastserial : Integer;
begin
with LastRowQuery do
begin
sql.Clear;
sql.Add('SELECT autoid, id FROM inctest ORDER BY autoid DESC LIMIT 1;');
execute;
end;
If LastRowQueryid.value < 1000 then lastserial:= LastRowQueryid.value + 1
else
lastserial := 1;
with LastRowQuery do
begin
sql.Clear;
sql.Add('Insert into inctest (id) values(:theserial)');
ParamByName('theserial').Value := lastserial;
execute;
end;
end;
最佳答案
我想也许你想要这个:
http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html#function_mod
给予类似于:
INSERT into tablename(id) SELECT MOD(count(id),1000)+1 FROM tablename
或者类似的,
INSERT into tablename(id) SELECT (count(id)%1000)+1 FROM tablename
干杯。