最简单的子查询:select * from table where date = (select max(date) from table) 或者用轮子哥讲的join自己: select * from table t1 left join (select max(date) as date from table) t2 on t1.date=t2.date where t2.date is not null
Copyright © 广州京杭网络科技有限公司 2005-2024 版权所有 粤ICP备16019765号
广州京杭网络科技有限公司 版权所有