MYSQL SELECT MAX(id)+ 1其中id< 1000

时间:2013-04-03 21:59:13

标签: mysql delphi auto-increment

我需要使用类似的东西:

 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中完成了这个,这是执行此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;

1 个答案:

答案 0 :(得分:4)

我想也许你想要这个: 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

干杯。