meridian99
MIS
Hi, I looking for some help on some Pl/SQL code for oracle 7.34 that does a select on a table and gets the last entry from a repating record set of data. No index or key exists, just repeating records of data...
row#, date, weight, status
1, 20020101, 100.0, 1
1, 20020201, 500.5, 3
1, 20020301, 333.3, 4
.
.
.
.
I need to get the last record from the data set. Do I use FETCH and serially read thru each record til the row# changes?
thanks
row#, date, weight, status
1, 20020101, 100.0, 1
1, 20020201, 500.5, 3
1, 20020301, 333.3, 4
.
.
.
.
I need to get the last record from the data set. Do I use FETCH and serially read thru each record til the row# changes?
thanks