當我做這在我的存儲過程:如何從存儲過程調用存儲功能和存儲返回值
create procedure Proc1(
startdate IN TIMESTAMP,
ENDDATE IN TIMESTAMP
)
declare test_result number --line 55
test_result:=Stored_function1(startdate,enddate,11,13); --line 56
END;
SQL開發人員拋出2個錯誤:
PLS-00103:遇到下列其中一項時遇到符號「TEST_RESULT」::=。 (@%;非零範圍默認字符符號「。」代替「TEST_RESULT」繼續
PLS-00103:遇到以下符號之一時出現符號「END」:begin function pragma procedure subtype type當前光標刪除存在之前
Stored_function1
是用戶定義的,4個參數,並且不屬於任何包,在哪裏我做錯了,我如何改正呢?謝謝。
@techspider我認爲這是SQL Server的 –