标签: mysql unix-timestamp
我有一个包含主要ID和时间戳字段的表,并且有许多行具有不同的时间戳。我想检索特定id的最新时间戳的行。时间戳采用UNIX时间戳格式。 如何检索该特定行?
答案 0 :(得分:1)
select id, max(timestamp) from table group by id
希望帮助你!
答案 1 :(得分:0)
尝试使用:
select * from table where id=1 order by timestamp_field desc;