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, 2504🔥, 0💬
Popular Posts:
What To Do If the StartDB.bat Failed to Start the XE Instance in Oracle? If StartDB.bat failed to st...
How Fixed Length Strings Are Truncated and Padded in SQL Server Transact-SQL? When the length of the...
Where to find answers to frequently asked questions on Transaction Management: Commit or Rollback in...
How To Divide Query Output into Multiple Groups with the GROUP BY Clause in SQL Server? Sometimes, y...
How To Connect ASP Pages to Oracle Servers in Oracle? If you are running Windows IIS Web server and ...