Skip to content

Instantly share code, notes, and snippets.

@gbdavid2
Last active February 19, 2017 20:27
Show Gist options
  • Save gbdavid2/cf7961814899d453415a to your computer and use it in GitHub Desktop.
Save gbdavid2/cf7961814899d453415a to your computer and use it in GitHub Desktop.
AdventureWorks: Retrieve data about latest orders by customer name, date and sales person (ordered by date and grouped by customer name,date and sales person)
SELECT TOP 10 P.FirstName +' '+P.LastName As ClientName, SOH.OrderDate, SOH.SalesPersonID
FROM Sales.SalesOrderHeader SOH
JOIN Sales.Customer C ON SOH.CustomerID = C.CustomerID
JOIN Person.Person P ON P.BusinessEntityID = C.PersonID
WHERE SalesPersonID IS NOT NULL
GROUP BY P.FirstName +' '+P.LastName, SOH.OrderDate, SOH.SalesPersonID
ORDER BY SOH.OrderDate DESC, P.FirstName +' '+P.LastName
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment