Collections:
Initialize Variables with Default Values in Oracle
How To Initialize Variables with Default Values in Oracle?
✍: FYIcenter.com
There are two ways to assign default values to variables at the time of declaration:
The script below show you some examples of declaration statements with default values:
PROCEDURE proc_var_1 AS domain VARCHAR2(80) := 'fyicenter.com'; price REAL DEFAULT 999999.99; is_for_sale CHAR := 'N'; BEGIN -- Executable statements END;
⇒ Assign Values to Variables in Oracle
⇐ Declare Local Variables in Oracle
2018-08-06, 2376🔥, 0💬
Popular Posts:
How To Convert Binary Strings into Integers in SQL Server Transact-SQL? Binary strings and integers ...
Where to find Oracle database server tutorials? Here is a collection of tutorials, tips and FAQs for...
Where to find tutorials to answer some frequently asked questions on Microsoft SQL Server Transact-S...
How To List All Login Names on the Server in SQL Server? If you want to see a list of all login name...
Where to find MySQL database server tutorials? Here is a collection of tutorials, tips and FAQs for ...