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, 2156🔥, 0💬
Popular Posts:
What Is an Oracle Tablespace in Oracle? An Oracle tablespace is a big unit of logical storage in an ...
How To Replace Given Values with NULL using NULLIF() in SQL Server Transact-SQL? Sometime you want t...
How To Format DATETIME Values to Strings with the CONVERT() Function in SQL Server Transact-SQL? SQL...
How To List All User Names in a Database in SQL Server? If you want to see a list of all user names ...
Can Date and Time Values Be Converted into Integers in SQL Server Transact-SQL? Can date and time va...