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, 2626🔥, 0💬
Popular Posts:
Where to find SQL Server Transact-SQL language references? You can find SQL Server Transact-SQL lang...
How To Install Oracle Database 10g XE in Oracle? To install 10g universal edition, double click, Ora...
What are binary literals supported in SQL Server Transact-SQL? Binary literals in Transact-SQL are s...
How To Present a Past Time in Hours, Minutes and Seconds in MySQL? If you want show an article was p...
What Happens to Your Transactions When ERROR 1205 Occurred in MySQL? If your transaction receives th...