What Are the Numeric Comparison Operations?
Submitted by: AdministratorPL/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;
Submitted by: Administrator
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;
Submitted by: Administrator
Read Online Oracle Database Job Interview Questions And Answers
Top Oracle Database Questions
☺ | How To Recover a Dropped Table in Oracle? |
☺ | How Run SQL*Plus Commands That Are Stored in a Local File? |
☺ | What Happens to Indexes If You Drop a Table? |
☺ | How To Call a Stored Function in Oracle? |
☺ | What Is Input Buffer in SQL*Plus? |
Top DB Oracle Categories
☺ | Oracle PL-SQL Interview Questions. |
☺ | Oracle DBA Interview Questions. |
☺ | Oracle D2K Interview Questions. |
☺ | OCI Interview Questions. |
☺ | Oracle RMAN Interview Questions. |