SQL查询最新时间的一条数据

1、先查询最大的时间:

select max(time) from table

再把根据查询的时间作为添加条件查询表格

select * from table where time = (select max(time) from table)

完成!!!

2、使用 order by + limit 1

select * from table order by time desc limit 1;

完成!!!

你可能感兴趣的:(sql,数据库)