Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Concatenate rows
Hi Wendy,
Here's an example from a PL/SQL procedure:
inputFromDate := startMonth||'/'||startDay||'/'||startYear;
The '/' is a delimiter, if you don't want one just use:
inputFromDate := startMonth||startDay||startYear;
The individual data elements in this case were user input on a web browser, but the same syntax applies if the elements had been selected from tables.
Hope this helps.
David A. Barbour
Oracle DBA, OCP
Wendy Y wrote:
>
> Hello:
>
> Is there a way that we can Concatenate several rows (say 6 rows from a
> select statement) into one variable?
>
> Thanks
>
> Wendy
>
> ----------------------------------------------------------------------
> Do You Yahoo!?
> Yahoo! Mail Personal Address - Get email at your own domain with
> Yahoo! Mail.
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: David A. Barbour INET: dbarbour_at_nucentrix.net 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 Fri Mar 30 2001 - 09:35:45 CST
![]() |
![]() |