如果其中一道题目删除了,新添加的试题的编号要用中断编号的最小编号来填充,一个比较好的方法
表名:tt
列:id
用下面的方法就能找出中断数字的最小值了
select min(t.id) as id from (select id=id+1 from tt) t
where id not in (select id from tt)
时间: 2024-10-01 09:41:37
如果其中一道题目删除了,新添加的试题的编号要用中断编号的最小编号来填充,一个比较好的方法
表名:tt
列:id
用下面的方法就能找出中断数字的最小值了
select min(t.id) as id from (select id=id+1 from tt) t
where id not in (select id from tt)