Sql语句求最小可用id
程序员文章站
2022-08-18 09:00:48
select id from test a where not exists
(&nbs...
select id from test a where not exists
(
select 1 from test where id=a.id+1
)
order by id
缺点,不从1开始计算。
(
select 1 from test where id=a.id+1
)
order by id
缺点,不从1开始计算。
上一篇: 半小时精通正则表达式-精华版
下一篇: 【Bug解决】org.apache.ibatis.type.TypeException: The alias ‘xxxx‘ is already mapped to the value ‘xxx‘
推荐阅读
-
sql 多条件组合查询,并根据指定类别找出所有最小子类别的SQL语句备忘
-
sql server求分组最大值,最小值,最大值对应时间,和最小值对应时间
-
数据库批量sql插入语句动态获取最新自增id问题如何解决?
-
SQL Server 2008 R2——查找最小nIndex,nIndex存在而nIndex+1不存在 求最小连续数组中的最大值
-
[20191011]通过bash计算sql语句的sql_id.txt
-
Mysql查询表中最小可用id值的方法
-
Sql语句求最小可用id
-
sql指定排序规则、筛选id最大或最小记录、查询插入数据
-
SQL语句取多列的最小值(排除0)
-
mysql查询表中最小可用id值