I need to include single quotes in dbms_output statement. I’ve tried this:
dbms_output.put_line('\''first_name||'\'');
Here first_name is variable; I need to display this inside single quotes.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
you’d escape by doubling up:
or using the q-quote mechanism:
eg: