sql查询请教


有商品表如上,date日期,itemId货物id,num数量
现在要查询每天销量最高的商品
即结果是:

dateitemIdnum
20190109b5
20190110d1
20190111b5
20190112c4

回答

SELECT date, itemid, max(num) as maxnum FROM store 

GROUP BY date

这里有在线演示
https://bixuebihui.com/sql/group.html
可以看到结果。

以上是 sql查询请教 的全部内容, 来源链接: utcz.com/a/38312.html

回到顶部