An anonymous block is an unnamed sequence of actions. Since they are unnamed, anonymous blocks cannot be referenced by other program units.
In contrast to anonymous blocks, stored/ named code blocks include Packages, Procedures, and Functions.
In contrast to anonymous blocks, stored/ named code blocks include Packages, Procedures, and Functions.
---
---
declare
i number;
begin;
i := 10;
end;
---
declare
i number;
begin;
i := 10;
end;
---
No comments:
Post a Comment