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 Shutdown Your 10g XE Server? |
☺ | How To Recover a Dropped Table in Oracle? |
☺ | What Happens to Indexes If You Drop a Table? |
☺ | What Is the Relation of a User Account and a Schema? |
☺ | How To Use Values from Other Tables in UPDATE Statements using Oracle? |
Top DB Oracle Categories
☺ | Oracle PL-SQL Interview Questions. |
☺ | Oracle DBA Interview Questions. |
☺ | Oracle D2K Interview Questions. |
☺ | OCI Interview Questions. |
☺ | Oracle RMAN Interview Questions. |