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存储过程,报错信息如下:

exception PLS-00403: expression 'V_END' cannot be used as an INTO-target of a SELECT/FETCH statement 

2.原因分析

  oracle存储过程,使用关键字"in"修饰的参数,代表入参,表示只读,即不能给参数赋值。

3.解决方案

  oracle存储过程,使用关键字"out"修饰的参数,代表出参,允许修改;

  因此,

exception PLS-00403: expression 'V_END' cannot be used as an INTO-target of a SELECT/FETCH statement 

 

相关文章:

  • 2021-12-12
  • 2022-12-23
  • 2021-07-05
  • 2022-12-23
  • 2021-07-20
  • 2021-07-05
  • 2022-12-23
猜你喜欢
  • 2021-09-12
  • 2022-12-23
  • 2022-02-21
  • 2022-01-22
  • 2021-10-08
  • 2021-05-05
相关资源
相似解决方案