Mysql学习SQL GROUP BY 详解及简单实例
《Mysql学习SQL GROUP BY 详解及简单实例》要点: ?GROUP BY 语句用于结合 Aggregate 函数,根据一个或多个列对结果集进行分组.MYSQL入门 SQL GROUP BY 语法MYSQL入门 SELECT column_name,aggregate_function(column_name) FROM table_name WHERE column_name operator value GROUP BY column_name; ?演示数据库MYSQL入门 在本教程中,我们将使用众所周知的 Northwind 样本数据库.MYSQL入门 下面是选自 "Orders" 表的数据:MYSQL入门 | OrderID | CustomerID | EmployeeID | OrderDate | ShipperID | 10248 90 5 1996-07-04 3 10249 81 6 1996-07-05 1 10250 34 4 1996-07-08 2ShipperID | ShipperName | Phone | 1 Speedy Express (503) 555-9831 2 United Package (503) 555-3199 3 Federal Shipping (503) 555-9931EmployeeID | LastName | FirstName | BirthDate | Photo | Notes | 1 Davolio Nancy 1968-12-08 EmpID1.pic Education includes a BA.... 2 Fuller Andrew 1952-02-19 EmpID2.pic Andrew received his BTS.... 3 Leverling Janet 1963-08-30 EmpID3.pic Janet has a BS degree....
---|