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, 2460🔥, 0💬
Popular Posts:
How To Generate Random Numbers with the RAND() Function in SQL Server Transact-SQL? Random numbers a...
How To Connect the Oracle Server as SYSDBA in Oracle? This is Step 4. The best way to connect to the...
Where to find reference information and tutorials on MySQL database functions? I want to know how to...
How To Install Oracle Database 10g XE in Oracle? To install 10g universal edition, double click, Ora...
How To Format Time Zone in +/-hh:mm Format in SQL Server Transact-SQL? From the previous tutorial, y...