DECLARE
"WELCOME" varchar2(10) := 'welcome'; -- identifier with quotation
BEGIN
DBMS_Output.Put_Line(Welcome); --reference to the identifier without quotation
END;
/
Sample Output:
welcome
Statement processed.
0.00 seconds
When identifier is enclosing without double quotation and reference to the identifier is without quoted:
DECLARE
WELCOME varchar2(10) := 'welcome'; -- identifier without quotation
BEGIN
DBMS_Output.Put_Line(Welcome);-- reference to the identifier without quotation
END;
/
Sample Output:
When identifier is enclosing without double quotation and reference to the identifier is without quoted:
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer