您的位置:首页 > 数据库 > Oracle

Oracle 按照Rownum删除数据的一种方法

2011-02-16 10:14 423 查看
最近在做Sql到Oracle的移植工作,由于Oracle中没有像Sql 里那样的Identity列,所以遇到很多麻烦,最近遇到了一个要根据自增列的值删除数据的存储过程,弄了半天找到了一种方法。

/*在Oracle中的操作过程*/

--创建表,由于Oracle中没有identity,所以去掉aid列,在后面使用rownum
create table TempTable (
SearchID number(10,0)
)

--删除Rownum为5的值

declare cursor tmp_cursor is select rownum aid,searchid from TempTable for update;
tmp_record tmp_cursor%rowtype;
begin
open tmp_cursor;
loop
fetch tmp_cursor into tmp_record;
exit when tmp_cursor%notfound;

if(tmp_record.aid=5)--如果rownum为5
then
begin
delete TempTable where current of tmp_cursor;
end;
end if;
end loop;
close tmp_cursor;
commit;
end;
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: