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"修饰的参数,代表出参,允许修改;
因此,
相关推荐:
exception PLS-00215: String length constraints must be in range (1 .. 32767)exception PLS-00103: Encountered the symbol "(" when expecting one of the following:
转载于:https://www.cnblogs.com/Marydon20170307/p/9485426.html
相关资源:数据结构—成绩单生成器