What Are the Logical Operations?
Submitted by: AdministratorPL/SQL supports 3 logical operations as shown in the following sample script:
PROCEDURE proc_comparison AS
x BOOLEAN := TRUE;
y BOOLEAN := FALSE;
res BOOLEAN;
BEGIN
res = x AND y;
res = x OR y;
res = NOT x;
-- more statements
END;
Submitted by: Administrator
PROCEDURE proc_comparison AS
x BOOLEAN := TRUE;
y BOOLEAN := FALSE;
res BOOLEAN;
BEGIN
res = x AND y;
res = x OR y;
res = NOT x;
-- more statements
END;
Submitted by: Administrator
Read Online Oracle Database Job Interview Questions And Answers
Top Oracle Database Questions
☺ | How To Run SQL*Plus Commands in SQL Developer? |
☺ | How Run SQL*Plus Commands That Are Stored in a Local File? |
☺ | What Happens to Indexes If You Drop a Table? |
☺ | How To Drop a Stored Function? |
☺ | 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. |