Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: How to do with it?
Hi :)
Well what u need to do is, that u concatinate all those strings like this.
temp varchar2(10) := null; wholetext varchar2(200) := null; Cursor C1 IS SELECT NAME FROM TEST;
And I open the cursor:
OPEN C1;
LOOP
FETCH C1 INTO temp; EXIT WHEN C1%NOTFOUND; /* I want to have the result : 'This is test!'. */ wholetext := wholetext || temp || ' ';END LOOP;
Hope this gets u started.
-----== Posted via Deja News, The Leader in Internet Discussion ==----- http://www.dejanews.com/rg_mkgrp.xp Create Your Own Free Member Forum Received on Fri Aug 28 1998 - 04:06:46 CDT
![]() |
![]() |