InterviewSolution
Saved Bookmarks
| 1. |
What Are The Numeric Comparison Operations? |
|
Answer» 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;PL/SQL supports 6 basic numeric comparison operations as shown in the following sample script: |
|