GroupBy 用於聚合數據,而 OrderBy 用於排序數據。 GroupBy 傳回群組,而 OrderBy 傳回排序後的行。 GroupBy 可以包含聚合函數,而 OrderBy 可以包含常規列。
GroupBy 與OrderBy 在SQL 中的差異
GroupBy
<code class="sql">SELECT column_name(s) FROM table_name GROUP BY column_name</code>
OrderBy
結果集: GroupBy 傳回群組,而 OrderBy 傳回排序後的行。
ProductSales
100 | |
---|---|
Apple | |
Banana | |
Orange | |
Product |
Apple
Banana | 75 |
---|---|
120 | |
OrderBy 範例: | |
Product |
120 | |
#100 | |
75 |
以上是sql中groupby和orderby區別的詳細內容。更多資訊請關注PHP中文網其他相關文章!