InterviewSolution
Saved Bookmarks
| 1. |
Is the following a correct assignment statement in PL/SQL? |
|
Answer» No, this is not a correct way to IMPLEMENT assignment in PL/SQL. In PL/SQL, the assignment STATEMENT is the following: :=Let us SEE in the example: sum := sum +10;The following is another example: DECLARE cost NUMBER := 3000; BEGIN dbms_output.put_line(cost); END; /The output: 3000 |
|