Looks like the last row is always the latest record of the 'name' column. In that case, it would be like below.
Select Name, max(create_time)
If that is not the case then you can use ROW_NUMBER() and give number to all the rows and use max of it by name to get the last record.
Looks like the last row is always the latest record of the 'name' column. In that case, it would be like below.
Select Name, max(create_time)
If that is not the case then you can use ROW_NUMBER() and give number to all the rows and use max of it by name to get the last record.