-
cursor pdct-parameter-cur (id varchar,price number)
is select * from productinfowhere productid like id \\'%'
and productprice>price;
宣告了乙個引數化游標,其中 productid 類似於 id ||'%'在這裡,在引數 id 的實際值末尾新增乙個“%”萬用字元以匹配它。 如果 id 傳入,則值為'123456',該條件等效於 where productid like'123456%' 。
-
這就是在游標中定義表中使用的字段,並給他賦值以初始化的意思......
-
這句話應該有問題:
str:='select ename from where ename like ''%'||letter||'%''';
-
游標可以使用變數宣告。
cursor cur(letter varchar2) is
select ename from where ename like ‘%letter||'%'
-
我也想知道如何定義它,這個問題後來是如何解決的? 你能分享一下嗎?
-
引數還是字段? 編譯器一定被你弄糊塗了:
cursor cur_goods(p_categoryid varchar) is
select * from
select * from goods gwhere order by asc
where rownum<2;
把它改成這個,你就沒事了。
-
我給你舉個例子。
-
create or replace procedure test1(cursor1 out sys_refcursor)is
beginopen cursor1 用於從表名中選擇 *;
end;然後轉到您正在呼叫的程式中的此游標。
-
自己找神諭書,這不清楚。
-
這是普通的儲蓄過程。