I have a table like this:
    entry_time student class grade
    ------------------------------
    1433793600 Dave    1      A
    1433793600 Sue     1      B
    1434994097 Dave    1      C
    1434994097 Sue     1      BI'm using this command:
SELECT *, MAX(entry_time) from records GROUP BY student 
     
     
    