麻將玩法編譯
發布時間: 2024-04-04 00:04:27
A. oracle存儲過程中提示 錯誤:PLS-00103: 出現符號 "FOR"在需要下列之一時
你妹,你那個語法是sql server的語法好伐。。。
oracle語法見下面
declare
cursor v_cur_tmp is
SELECT oc_date,dwbm,kmbm,bzbm,rowid FROM t_gfsindex_indexcontent;
begin
open v_cur_tmp;
loop
fetch v_cur_tmp into v_oc_date, v_cur_dwbm, v_cur_kmbm, v_cur_bzbm,cur_rowid;
exit when v_cur_tmp%NOTFOUND;
;
end loop;
close v_cur_tmp;
end;
熱點內容