InterviewSolution
Saved Bookmarks
| 1. |
What Are The Logical Operations? |
|
Answer» PL/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;PL/SQL supports 3 logical operations as shown in the following sample script: |
|