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, 2796🔥, 0💬
Popular Posts:
How to convert a JSON (JavaScript Object Notation) quoted string into a regular character string usi...
How To Create a Table Index in Oracle? If you have a table with a lots of rows, and you know that on...
How to download and install Microsoft SQL Server Management Studio Express in SQL Server? Microsoft ...
Where to find answers to frequently asked questions on PHP Connections and Query Execution for MySQL...
How To Recover a Dropped Index in Oracle? If you have the recycle bin feature turned on, dropped ind...