2018-04-20T23:43:18-04:00
Select the statement with the correct syntax below.
SELECT [CustomerID]
,[SalespersonID]
,count(*)
FROM [dbo].[Order_T]
GROUP BY [CustomerID]
,[SalespersonID]
SELECT [CustomerID]
,[SalespersonID]
,count(*)
FROM [dbo].[Order_T]
GROUP BY [CustomerID]
SELECT [CustomerID]
,[SalespersonID]
,count(*)
FROM [dbo].[Order_T]
ORDER BY [CustomerID]
,[SalespersonID]
SELECT [CustomerID]
,[SalespersonID]
,count(*)
FROM [dbo].[Order_T]
1
2018-04-25T08:57:41-0400
Correct answer №1: SELECT [CustomerID] ,[SalespersonID] ,count(*) FROM [dbo].[Order_T] GROUP BY [CustomerID] ,[SalespersonID]
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS !
Comments