plsql, cursor, stored procedure
The following are personal study notes
The plsql language is case insensitive.
1. Program structure:
Plsql is divided into three parts: declaration part, executable part and exception handling part. Syntax:
declare
--Declaring variables, cursors
i integer;
begin
--Execute statement
--exception handling
end;
Example: print hello world ...
Posted by bnmng on Wed, 25 May 2022 12:34:32 +0300