Oct 17, 2005 #1 uconn1981 Programmer Mar 21, 2005 42 US I need to select the whole record based on the max vlaue on one of the fields. How to do that? Thanks, Tim
I need to select the whole record based on the max vlaue on one of the fields. How to do that? Thanks, Tim
Oct 17, 2005 1 #2 r937 Technical User Jun 30, 2002 8,847 CA select * from daTable where onefield = ( select max(onefield) from daTable ) r937.com | rudy.ca Upvote 0 Downvote