Collections:
Use "IN" Parameters in Oracle
How To Use "IN" Parameter Properly in Oracle?
✍: FYIcenter.com
Here are the rules about IN parameters:
Here is good example of a procedure with an IN parameter:
SQL> CREATE OR REPLACE PROCEDURE WELCOME AS
2 SITE CHAR(80) := 'FYICenter.com';
3 PROCEDURE WELCOME_PRINT(S IN CHAR) AS
4 BEGIN
5 DBMS_OUTPUT.PUT_LINE('Welcome to ' || S);
6 -- S := 'Google.com'; -- Not allowed
7 END;
8 BEGIN
9 WELCOME_PRINT('MySpace.com');
10 WELCOME_PRINT(SITE);
11 END;
12 /
SQL> EXECUTE WELCOME;
Welcome to MySpace.com
Welcome to FYICenter.com
⇒ Use "OUT" Parameters in Oracle
⇐ Parameter Modes Supported by PL/SQL in Oracle
2018-10-19, 2418🔥, 0💬
Popular Posts:
How To Convert Numeric Expression Data Types using the CONVERT() Function in SQL Server Transact-SQL...
How To View Data Files in the Current Database in Oracle? If you want to get a list of all tablespac...
What Happens to Your Transactions When ERROR 1213 Occurred in MySQL? If your transaction receives th...
How To Drop an Index in Oracle? If you don't need an existing index any more, you should delete it w...
How To Verify a User name with SQLCMD Tool in SQL Server? The quickest way to verify a user name in ...