exception PLS-00403: expression 'V_END' cannot be used as an INTO-target of a SELECT/FETCH statement
CreationTime--2018年8月16日09點22分
Author:Marydon
1.情景展示
oracle存儲過程,報錯信息如下:
2.原因分析
oracle存儲過程,使用關鍵字"in"修飾的參數,代表入參,表示只讀,即不能給參數賦值。
3.解決方案
oracle存儲過程,使用關鍵字"out"修飾的參數,代表出參,允許修改;
因此,