how to select a feild from cursor with condition? [message #116490] |
Wed, 20 April 2005 06:30 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
zigbinputi
Messages: 11 Registered: April 2005
|
Junior Member |
|
|
is this posible?
select cursor_name.field
from cursor_name
where cursor_name.id = 4;
i have a cursor that stores details. im having problem on how to retrieve 1 field from my cursor with condition like the one above. do i need to use record?
pls help how to do this.. this is really urgent..
thanks..
[Updated on: Wed, 20 April 2005 06:39] Report message to a moderator
|
|
|
|
|
Re: how to select a feild from cursor with condition? [message #116763 is a reply to message #116490] |
Thu, 21 April 2005 20:33 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) |
![](/forum/images/custom_avatars/67467.jpg) |
djmartin
Messages: 10181 Registered: March 2005 Location: Surges Bay TAS Australia
|
Senior Member Account Moderator |
|
|
If the data is already in the database, use a second cursor to fetch the exact information using information that you obtained from the first cursor. That is, go back to the database a second time but with a more exact where clause.
|
|
|