Skip to content

Commit 639ea44

Browse files
fix typo in good example of G-4387
1 parent 1406889 commit 639ea44

File tree

1 file changed

+2
-2
lines changed
  • docs/4-language-usage/4-control-structures/3-flow-control

1 file changed

+2
-2
lines changed

docs/4-language-usage/4-control-structures/3-flow-control/g-4387.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
!!! missing "Unsupported in db\* CODECOP Validators"
77
Without access to the Oracle Data Dictionary, we cannot determine the number of rows to be processed.
8-
8+
99
## Reason
1010

1111
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
4545
select ename
4646
into l_ename
4747
from emp
48-
where empno >= in_empno;
48+
where empno = in_empno;
4949
return l_ename;
5050
exception
5151
when no_data_found then

0 commit comments

Comments
 (0)