| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> c.d.o.server -> How to do with it?
Hello,
If I have a table with 3 rows:
NAME
And I have a cursor:
DECLARE
temp CHAR(20);
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!'. */
temp = ??
![]() |
![]() |