Build a stored procedure for the output digital under SQL * PLUS

xiaoxiao2021-03-06  38

SQL> SET ServerOutput Onsql> Create or Replace Procedure Test1 (i in number) AS 2 Begin 3 dbms_output.put_line ('Enter parameter is' || to_CHAR (i)); 4 end; 5 /

The process has been created.

SQL> EXECUTE TEST1 (9825); input parameters are 9825

The PL / SQL process has been successfully completed.

转载请注明原文地址:https://www.9cbs.com/read-60073.html

New Post(0)