Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Concatinate with a '''
Hum, they are the two I used the most. Guess that's why they stuck in my mind.
-----Original Message-----
Sent: Tuesday, November 13, 2001 11:59 AM
To: Multiple recipients of list ORACLE-L
Single quote is chr(39). Chr(10) is linefeed and chr(13) is carriage return,
which are used very often
Dennis Williams
DBA
Lifetouch, Inc.
dwilliams_at_lifetouch.com
-----Original Message-----
Sent: Tuesday, November 13, 2001 1:35 PM
To: Multiple recipients of list ORACLE-L
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).
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).
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).
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 - 14:43:49 CST
![]() |
![]() |