How to find max based on 2 columns.
robikFeb 24 2010 — edited Feb 24 2010Hi I have a table where I have two numeric fields (date and time) )(thouse field are not date time format but numeric)
Column A represents date and column B represent time.
How would I find max value of column A and with results for A find Max for B.
example
A - - - - - - - - - -B
101010 - - - - - 202020
101011 - - - - - 202021
101012 - - - - - 202021
101010 - - - - - 202022
101012 - - - - - 202020
......... ...........
What I looking for is
A - - - - - - - - - - B
101012 - - - - - 202021
Thanks