Quoted Identifiers : Quote « Select Query « Oracle PL / SQL






Quoted Identifiers

    

SQL> DECLARE
  2    "End" NUMBER := 1;
  3  BEGIN
  4    dbms_output.put_line('A quoted identifier End ['||"End"||']');
  5  END;
  6  /
A quoted identifier End [1]

PL/SQL procedure successfully completed.

SQL>

   
    
    
    
  








Related examples in the same category

1.Alternative Quoting Mechanism in Oracle 10g: two quotes really means one quote
2.q'{32 O'Hara Avenue}'): Use a 'q' as the leading character after the parentheses
3.Quoting syntax is q'[ ... ]' where the [] is the user-defined
4.Using two single-quotes print the string correctly