This is an example of a mysql table:
Name | Message | Time
-----+-------------+-------------
John | Hi | 12/11 7:00PM
John | Bye | 12/11 7:05PM
John | Hello World | 12/11 7:10PM
Jane | I'm fine | 12/11 7:15PM
Jane | How are you | 12/11 7:20PM
Jane | Hello World | 12/11 7:25PM
Bob | Hi | 12/11 7:30PM
Bob | I'm fine | 12/11 7:35PM
Bob | Hello World | 12/11 7:40PM
My question is what code will I use to call for the latest insert of each person in the name column?
Example of what I'm looking for:
Name | Message | Time
-----+-------------+-------------
John | Hello World | 12/11 7:10PM
Jane | Hello World | 12/11 7:25PM
Bob | Hello World | 12/11 7:40PM
Thank you in advance.
EDIT
The time column is set as a varchar datatype not an time data type.