【求助】怎么在where中实现max函数功能
输入select distinct user_id,max(day),balance
from
ods.ods_pf_day_money_d
where stat_day ='20210421'
and user_id =12378481
group by user_id,balance
结果输出结果是同个user_id,不同day的对应balance,我只想要最新的day那一行数据,请问怎么破呢?是要在where加子句吗?但是max好像无法在where实现