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, 2347🔥, 0💬
Popular Posts:
Where to find answers to frequently asked questions on PHP Connections and Query Execution for MySQL...
How To Disable a Login Name in SQL Server? If you want temporarily disable a login name, you can use...
What are DDL (Data Definition Language) statements for tables in SQL Server? DDL (Data Definition La...
What Is an Oracle Instance in Oracle? Every running Oracle database is associated with an Oracle ins...
How To Convert Binary Strings into Integers in SQL Server Transact-SQL? Binary strings and integers ...