We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1406889 commit 639ea44Copy full SHA for 639ea44
docs/4-language-usage/4-control-structures/3-flow-control/g-4387.md
@@ -5,7 +5,7 @@
5
6
!!! missing "Unsupported in db\* CODECOP Validators"
7
Without access to the Oracle Data Dictionary, we cannot determine the number of rows to be processed.
8
-
+
9
## Reason
10
11
A `for loop` can hide a `too_many_rows` exception. The more complex a query is, the higher is the risk that more than one row will be processed.
@@ -45,7 +45,7 @@ create or replace package body employee_api is
45
select ename
46
into l_ename
47
from emp
48
- where empno >= in_empno;
+ where empno = in_empno;
49
return l_ename;
50
exception
51
when no_data_found then
0 commit comments