selectcode,max(date)fromquotegroupbycode;|06288|2019-09-23||06388|2018-01-30||06488|2014-05-26||06805|2019-09-23||06806|2019-09-23||06808|2019-09-23||06811|2019-09-23||06813|2014-05-22||06816|2019-09-23||06818|2019-09-23|我如何选出,每个code组中,最大date
2 回答
慕雪6442864
TA贡献1812条经验 获得超5个赞
selectcode,max(date)fromquotegroupbycodehavingmax(date)<'2019-09-23';max(date)属于聚合函数,只能用在select或者having后面,顺序是先where过滤,然后group分组,having过滤分组后的内容
添加回答
举报
0/150
提交
取消