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, 2963🔥, 0💬
Popular Posts:
How To Format DATETIME Values to Strings with the CONVERT() Function in SQL Server Transact-SQL? SQL...
How to check if two JSON values have overlaps using the JSON_OVERLAPS() function? JSON_OVERLAPS(json...
How To Create a Table Index in Oracle? If you have a table with a lots of rows, and you know that on...
Where to find tutorials to answer some frequently asked questions on Microsoft SQL Server Transact-S...
How To Generate CREATE TABLE Script on an Existing Table in SQL Server? If you want to know how an e...