如何优化游标--使用只读游标

标准游标

declare my_cursor cursor

for

select * from s_yhb


只读游标

declare my_cursor cursor

for

select * from s_yhb

for read only


更新游标

declare my_cursor cursor

for

select * from s_yhb

for update

posted on 2013-09-17 15:45  寒皑释融  阅读(430)  评论(0编辑  收藏  举报

导航