时间:2021-07-01 10:21:17 帮助过:23人阅读
示范:算出每一间店 (Store_Name) 的营业额 (Sales)
SELECT Store_Name, SUM(Sales) FROM Store_Information GROUP BY Store_Name;
Los Angeles 1800 San Diego 250 Boston 700
当我们选不只一个栏位,且其中至少一个栏位有包含函数的运用时,我们就需要用到 GROUP BY 这个指令。在这个情况下,我们需要确定我们有 GROUP BY 所有其他的栏位。换句话说,除了有包括函数的栏位外,我们都需要将其放在 GROUP BY 的子句中。
sql-group by
标签: