Mega Code Archive

 
Categories / Oracle PLSQL Tutorial / PL SQL Programming
 

Using two single-quotes print the string correctly

SQL> SQL> SET SERVEROUTPUT ON SQL> SQL> BEGIN   2     DBMS_OUTPUT.PUT_LINE('Oracle''s are BEAUTIFUL');   3  END;   4  / Oracle's are BEAUTIFUL PL/SQL procedure successfully completed. SQL>