Skip to content

Instantly share code, notes, and snippets.

@jonezy
Created September 10, 2010 19:59
Show Gist options
  • Save jonezy/574274 to your computer and use it in GitHub Desktop.
Save jonezy/574274 to your computer and use it in GitHub Desktop.
SELECT ci.ProductID, COUNT(ci.ProductID) AS Total
FROM CartItem AS ci INNER JOIN
SportPick AS sp ON sp.SportPickID = ci.ProductID
GROUP BY ci.ProductID, sp.Winner
ORDER BY Total
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment