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;
2018-08-06, 895👍, 0💬
Popular Posts:
How To Format DATETIME Values to Strings with the CONVERT() Function in SQL Server Transact-SQL? SQL...
Can You Create a View with Data from Multiple Tables in SQL Server? Can You Create a View with Data ...
How To Start Instance with a Minimal Initialization Parameter File in Oracle? The sample initializat...
How To Create a Table in a Specific Tablespace in Oracle? After you have created a new tablespace, y...
How To Calculate Age in Days, Hours and Minutes in SQL Server Transact-SQL? On many Web sites, news ...