Oracle Database
Bloc PL / SQL anonyme
Recherche…
Remarques
Comme ils ne sont pas nommés, les blocs anonymes ne peuvent pas être référencés par d'autres unités de programme.
Un exemple de bloc anonyme
DECLARE
-- declare a variable
message varchar2(20);
BEGIN
-- assign value to variable
message := 'HELLO WORLD';
-- print message to screen
DBMS_OUTPUT.PUT_LINE(message);
END;
/
Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow