i want to fetch ist 25 rows from a tables depending on the last updated time
to fetch ist 25 rows
Collapse
X
-
Tags: None
-
Originally posted by ankurnakaii want to fetch ist 25 rows from a tables depending on the last updated time
[CODE=sql] begin
open myCursor_cur;
loop
fetch myCursor_cur into myRec_rec;
exit when myCursor_cur%ro wcount = 25;
......
[/CODE] -
There is nothing like last updated time in oracle.
If u want to store that ,u have to store in a separate field.
then u can use any logic to retrive those records.Comment
Comment