We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1e8ff02 + 174b15a commit 2124832Copy full SHA for 2124832
docs/4-language-usage/3-dml-and-sql/1-general/g-3145.md
@@ -13,6 +13,7 @@ Exceptions to the rule can be when querying an inline view (where the SELECT \*
13
14
``` sql
15
begin
16
+ <<raise_salary>>
17
for r_employee in (
18
select *
19
from employees
@@ -23,7 +24,7 @@ begin
23
24
,salary_in => r_employee.salary
25
,hiredate_in => r_employee.hiredate
26
);
- end loop;
27
+ end loop raise_salary;
28
end;
29
/
30
```
@@ -32,6 +33,7 @@ end;
32
33
34
35
36
37
38
select id,salary,hiredate
39
@@ -42,7 +44,7 @@ begin
42
44
43
45
46
47
48
49
50
0 commit comments