查询不同品类最新价格的SQL语句怎么写,表格如下?select * from (select 日期,水果,价格,row_number() over(partition by 水果 order by 日期 desc) as n from t ) a where n=1
0条大神的评论