rollup 是 SQL 中的聚合函數,用於對層次結構中的資料進行多層分組和匯總。它的語法為:rollup(expression)。透過對資料以不同粒度進行聚合,rollup 函數可以輕鬆建立多層聚合,提高查詢效能,並允許使用者在不同粒度上探索資料。
rollup 在 SQL 中的用法
什麼是 rollup?
rollup 是 SQL 中的聚合函數,用於在層次結構中分組和匯總資料。它允許使用者對資料進行多層聚合,從最詳細的層級到最概括的層級。
如何使用 rollup?
rollup 函數的語法如下:
<code class="sql">rollup(expression)</code>
其中:
rollup 函數的用法範例:
#範例1:按"region"和"product"分組總計銷售額
<code class="sql">SELECT region, product, SUM(sales) FROM sales_table GROUP BY ROLLUP(region, product);</code>
此查詢將產生以下輸出:
region | product | ##sum(sales)|
---|---|---|
Product A | #1000 | |
#Product B | 1500 | |
Total | 2500 | |
Product A | 500 | |
#Product B | 750 | |
Total | 1250 | |
Product A | 700 | |
Product B | 900 | |
Total | #1600 | |
5350 |
<code class="sql">SELECT year, quarter, month, COUNT(order_id)
FROM orders_table
GROUP BY ROLLUP(year, quarter, month);</code>
此查詢將產生以下輸出:
quarter | month | count(order_id) | |
---|---|---|---|
1 | 1 | 100 | |
1 | 2 | #150 | |
1 | Total | 250 | |
2 | 3 | 120 | |
2 | 4 | 130 | |
#2 | Total | 250 | |
1 | #1 | 90 |
1#Total
以上是rollup在sql中的用法的詳細內容。更多資訊請關注PHP中文網其他相關文章!