当前位置:首页 >> 数据库

Sql语句求最小可用id

select id from test a where not exists 

        select 1 from test where id=a.id+1 

order by id 
缺点,不从1开始计算。