Collections:
Logical Operations in PL/SQL in Oracle
What Are the Logical Operations in Oracle?
✍: FYIcenter.com
PL/SQL supports 3 logical operations as shown in the following sample script:
PROCEDURE proc_comparison AS x BOOLEAN := TRUE; y BOOLEAN := FALSE; res BOOLEAN; BEGIN res = x AND y; res = x OR y; res = NOT x; -- more statements END;
⇒ Categories of Data Types in PL/SQL in Oracle
⇐ Numeric Comparison Operations in Oracle
2018-08-06, 2074🔥, 0💬
Popular Posts:
How To Recover a Dropped Index in Oracle? If you have the recycle bin feature turned on, dropped ind...
How To Locate and Take Substrings with CHARINDEX() and SUBSTRING() Functions in SQL Server Transact-...
Where to find answers to frequently asked questions on Downloading and Installing SQL Server 2005 Ex...
Can You Drop an Index Associated with a Unique or Primary Key Constraint in Oracle? You can not dele...
How To Calculate Age in Days, Hours and Minutes in SQL Server Transact-SQL? On many Web sites, news ...