Collections:
Numeric Comparison Operations in Oracle
What Are the Numeric Comparison Operations in Oracle?
✍: FYIcenter.com
PL/SQL supports 6 basic numeric comparison operations as shown in the following sample script:
PROCEDURE proc_comparison AS res BOOLEAN; BEGIN res := 1 = 2; res := 1 < 2; res := 1 > 2; res := 1 <= 2; res := 1 >= 2; res := 1 <> 2; -- more statements END;
⇒ Logical Operations in PL/SQL in Oracle
⇐ Arithmetic Operations in Pl/SQL in Oracle
2018-08-06, 2461🔥, 0💬
Popular Posts:
How To Convert Numeric Values to Integers in SQL Server Transact-SQL? Sometimes you need to round a ...
How To Use SQL*Plus Built-in Timers in Oracle? If you don't have a stopwatch/timer and want to measu...
What Are the Underflow and Overflow Behaviors on FLOAT Literals in SQL Server Transact-SQL? If you e...
Where to find answers to frequently asked questions on Managing Security, Login and User in SQL Serv...
What Is a Parameter File in Oracle? A parameter file is a file that contains a list of initializatio...