开发者

How To select limited number of rows from procedure out cursor

开发者 https://www.devze.com 2023-02-11 07:48 出处:网络
i开发者_StackOverflow中文版 have a cursor out from a procedure..and i want to fetch particular rows.. i.e, i want to use where condition in that out cursor..can we do the same in PL/SQL develover 10gO

i开发者_StackOverflow中文版 have a cursor out from a procedure..and i want to fetch particular rows.. i.e, i want to use where condition in that out cursor..can we do the same in PL/SQL develover 10g


Once the cursor has been opened, its result set is determined, so you cannot filter it then. If you cannot have the required filter added into the procedure definition then you are going to have to fetch all the rows and filter them in your code.

0

精彩评论

暂无评论...
验证码 换一张
取 消