declare tName varchar2(1000); str varchar2(1000); cou number; indexStart number; begin tName:= 'Docdetail'; str:= 'select count(*) as int from tab where tname=upper('''|| tName||''')' ; dbms_output.put_line(str); execute immediate str into cou ; if cou>0 then begin str:= 'select nvl(max(id),0)+1000 from ' || tName ; execute immediate str into indexStart ; str:='create sequence ' || tName || '_id start with '|| indexStart ||' increment by 1 nomaxvalue nocache'; dbms_output.put_line(str); execute immediate str; end; end if ; end; / declare tName varchar2(1000); str varchar2(1000); cou number; indexStart number; begin tName:= 'ImageFile'; str:= 'select count(*) as int from tab where tname=upper('''|| tName||''')' ; dbms_output.put_line(str); execute immediate str into cou ; if cou>0 then begin str:= 'select nvl(max(imagefileid),0)+1000 from ' || tName ; execute immediate str into indexStart ; str:='create sequence ' || tName || '_id start with '|| indexStart ||' increment by 1 nomaxvalue nocache'; dbms_output.put_line(str); execute immediate str; end; end if ; end; / declare tName varchar2(1000); str varchar2(1000); cou number; indexStart number; begin tName:= 'docImageFile'; str:= 'select count(*) as int from tab where tname=upper('''|| tName||''')' ; dbms_output.put_line(str); execute immediate str into cou ; if cou>0 then begin str:= 'select nvl(max(id),0)+1000 from ' || tName ; execute immediate str into indexStart ; str:='create sequence ' || tName || '_id2 start with '|| indexStart ||' increment by 1 nomaxvalue nocache'; dbms_output.put_line(str); execute immediate str; end; end if ; end; / 这个sql是干嘛的
时间: 2024-04-25 11:27:56 浏览: 83
源代码:在卖1000元的HsCms_V3_0 Sql 商业最终版
这段 SQL 语句是用来动态创建序列的。首先通过查询系统表 `tab`,判断指定的表名是否存在。如果存在,则查询指定表的最大 ID 值,并加上一个固定值作为序列的起始值;然后使用 `create sequence` 语句创建一个序列,名称为指定的表名加上 `_id` 后缀,起始值为上一步计算出的值,步长为 1,不设置最大值和缓存。这样可以保证每次向指定表中插入新记录时,自动生成唯一的 ID 值,避免了手动管理 ID 的麻烦。这段 SQL 中还包括了一些动态 SQL 的语法,使用 `execute immediate` 来执行动态生成的 SQL 语句。
阅读全文