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, 2614🔥, 0💬
Popular Posts:
How To Format Time Zone in +/-hh:mm Format in SQL Server Transact-SQL? From the previous tutorial, y...
What are DDL (Data Definition Language) statements for tables in SQL Server? DDL (Data Definition La...
How To Change the Password for Your Own User Account in MySQL? If you want to change the password of...
What are binary literals supported in SQL Server Transact-SQL? Binary literals in Transact-SQL are s...
What Happens to Your Transactions When ERROR 1205 Occurred in MySQL? If your transaction receives th...