i have a table with several fields example of the data is:
f1 f2 f3 f4
0004 01/04/2006 106.3 rp1
0004 01/04/2006 52.1 dp2
0010 01/04/2006 36.2 sp1
0010 01/04/2006 114.3 fr01
i need to return ALL columns but only for the row with the minimum value in column f3. So the result would look like:
f1 f2 f3 f4
0004 01/04/2006 52.1 dp2
0010 01/04/2006 36.2 sp1
Cheers, Craig
Si fractum non sit, noli id reficere
f1 f2 f3 f4
0004 01/04/2006 106.3 rp1
0004 01/04/2006 52.1 dp2
0010 01/04/2006 36.2 sp1
0010 01/04/2006 114.3 fr01
i need to return ALL columns but only for the row with the minimum value in column f3. So the result would look like:
f1 f2 f3 f4
0004 01/04/2006 52.1 dp2
0010 01/04/2006 36.2 sp1
Cheers, Craig
Si fractum non sit, noli id reficere