Using two single-quotes print the string correctly : Quote « Select Query « Oracle PL / SQL
- Oracle PL / SQL
- Select Query
- Quote
Using two single-quotes print the string correctly
SQL>
SQL> BEGIN
2 DBMS_OUTPUT.PUT_LINE('C''s');
3 END;
4 /
C's
PL/SQL procedure successfully completed.
Related examples in the same category