both the EmployeeID and CustomerID columns in our GROUP BY : GROUP BY « Query « SQL Server / T-SQL Tutorial

SQL Server / T-SQL Tutorial
1. Query
2. Insert Delete Update
3. Table
4. Table Join
5. Data Types
6. Set Operations
7. Constraints
8. Subquery
9. Aggregate Functions
10. Date Functions
11. Math Functions
12. String Functions
13. Data Convert Functions
14. Analytical Functions
15. Sequence Indentity
16. View
17. Index
18. Cursor
19. Database
20. Transact SQL
21. Procedure Function
22. Trigger
23. Transaction
24. XML
25. System Functions
26. System Settings
27. System Tables Views
28. User Role
29. CLR
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
SQL Server / T-SQL Tutorial » Query » GROUP BY 
1. 4. 6. both the EmployeeID and CustomerID columns in our GROUP BY
8CREATE TABLE Orders (
9>      OrderID int NOT NULL ,
10>     CustomerID nchar (5NULL ,
11>     EmployeeID int NULL ,
12>     OrderDate datetime NULL ,
13>     RequiredDate datetime NULL ,
14>     ShippedDate datetime NULL ,
15>     ShipVia int NULL ,
16>     Freight money NULL DEFAULT (0),
17>     ShipName nvarchar (40NULL ,
18>     ShipAddress nvarchar (60NULL ,
19>     ShipCity nvarchar (15NULL ,
20>     ShipRegion nvarchar (15NULL ,
21>     ShipPostalCode nvarchar (10NULL ,
22>     ShipCountry nvarchar (15NULL
23)
24> GO
1>
2>    SELECT CustomerID, EmployeeID, COUNT(*)
3>    FROM Orders
4>    WHERE CustomerID BETWEEN 'A' AND 'AO'
5>    GROUP BY CustomerID, EmployeeID
6> GO
CustomerID EmployeeID
---------- ----------- -----------

(rows affected)
1>
2> drop table orders;
3> GO
1>
1. 4. GROUP BY
1. 4. 1. A summary query that counts the number of Billings by Banker
1. 4. 2. Group by and table join
1. 4. 3. A summary query with a search condition in the WHERE clause
1. 4. 4. Extracting partial records using GROUP BY.
1. 4. 5. GROUP BY with SUM()
1. 4. 6. both the EmployeeID and CustomerID columns in our GROUP BY
1. 4. 7. A count for each grouping rather than the full table
1. 4. 8. Using GROUP BY ALL
w___w___w_.__ja_v___a2s__.co_m_ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.