Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: Concatinate with a '''

RE: Concatinate with a '''

From: Kimberly Smith <kimberly.smith_at_gmd.fujitsu.com>
Date: Tue, 13 Nov 2001 11:58:35 -0800
Message-ID: <F001.003C3C56.20011113113523@fatcity.com>

chr(13) or is it chr(10) (or some other ascii value) but instead of dealing with
with multiple quotes is much easier to just concatenate on the ASCII value of it.

-----Original Message-----
Sent: Tuesday, November 13, 2001 11:17 AM To: Multiple recipients of list ORACLE-L

I am trying to write dynamic sql to create some insert statements. I am doing:

select 'insert into table (val1, val2) values (' || val1 || ',' || val2 || ');'
from table;

The problem I am having is that one of the values is a char, and must be enclosed in single quotes in the output. I cant do this:

select sysdate || ''' || sysdate from dual

How do I concatinate a ' with the colum values?

Thanks
Erik

--

Please see the official ORACLE-L FAQ: http://www.orafaq.com
--

Author: Erik Williams
  INET: ewilliams_at_brownco.com

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
--

Please see the official ORACLE-L FAQ: http://www.orafaq.com
--

Author: Kimberly Smith
  INET: kimberly.smith_at_gmd.fujitsu.com
Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Tue Nov 13 2001 - 13:58:35 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US