I need to select the latest record per memberid by DATETIME.
SAY my table is like this:
MemberID CreatedDate
188 2013-01-31 08:10:15.990
188 2013-01-31 08:10:15.970
188 2013-01-24 19:36:01.840
244 2013-01-24 19:36:01.840
244 2013-01-31 08:10:15.970
244 2013-01-31 08:10:15.980
OUT:
188 2013-01-31 08:10:15.990
244 2013-01-31 08:10:15.980
SQL QUERY to select the latest based on date-Time-milliseconds.
Thank in advance for the help.