当前位置:操作系统 > Unix/Linux >>

获取最小可用id语句


获取最小可用id语句
 
其中SELECT rownum id from dual connect by rownum<=9
 
改成相应的最小值最大值区间,比如:www.zzzyk.com  
 
SELECT rownum+rpad('2010',7,'0') id from dual connect by rownum<=rpad('2010',7,'9')
 
Sql代码  
select id from (SELECT rownum id from dual connect by rownum<=9) a where not exists
(select id from tab where id= a.id)  
 
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,