Random
!! If you plan on using sub-methods, declare it first before the main method
Escaping Single Quote in VARCHAR
use 2 single quotes ''
l_test VARCHAR2(50) := '''pogi ako''';
DBMS_OUTPUT.PUT_LINE(l_test); will result to 'pogi ako' :D
Exiting a Loop
1. EXIT WHEN l_loan_amount < 0;
2. EXIT;
can't modify procedure IN variables
- therefore you need to assign it to a local variable.
No comments:
Post a Comment