What is a block in PL SQL?
I'll answer
Earn 20 gold coins for an accepted answer.20
Earn 20 gold coins for an accepted answer.
40more
40more
Studied at the University of Toronto, Lives in Toronto, Canada.
A PL/SQL block is defined by the keywords DECLARE, BEGIN, EXCEPTION, and END, which break up the block into three sections: Declarative: statements that declare variables, constants, and other code elements, which can then be used within that block. Executable: statements that are run when the block is executed.
2023-05-10 16:07:52
评论(499)
Helpful(122)
Helpful
Helpful(2)

Zoe White
QuesHub.com delivers expert answers and knowledge to you.
A PL/SQL block is defined by the keywords DECLARE, BEGIN, EXCEPTION, and END, which break up the block into three sections: Declarative: statements that declare variables, constants, and other code elements, which can then be used within that block. Executable: statements that are run when the block is executed.