0 votes
in PL/SQL by
How Is Global Variable Declared Within A Nested Block?

1 Answer

0 votes
by

Any variable declared within a block is local to the block and global to the nested blocks. The variables declared within the nested blocks are unknown to the outer blocks. They override the references to any outer declared variables with the same name unless they are used with the block label name.

...