What Are the Numeric Comparison Operations?

Submitted by: Administrator
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;

Submitted by: Administrator

Read Online Oracle Database Job Interview Questions And Answers