如题,我在网上也找过相关解决方法,很多解答都是这么一句sql语句:
select Id,Ac count Id,Mark,max(Create Time ) as Latest from AccountMark as b group by AccountId
使用Maxmysql教程。但是在我查出来的数据中似乎有些不对,如图,反白的那一条数据,Mark字段和CreateTime字段根本不对应啊!
这是怎么回事?使用Max函数后在mysql教程这样靠谱吗?
还有一条语句:
select *,COUNT(AccountId) as Num from (select * from AccountMark order by CreateTime desc) `temp` group by AccountId order by CreateTime desc
这样查出来的数据是对的
但是,我需要创建mysql教程,mysql教程中视图里不允许出现mysql教程子句。求大神些一条SQL语句,能实现既不出现子句,又能查出正确数据。谢谢!
解决方法:
select * from AccountMark as b where not exists(select 1 from AccountMark where AccountId= b.AccountId and b.CreateTime<createtime><p> </p></createtime>
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END