Skip to content

Instantly share code, notes, and snippets.

@AMD-NICK
Created January 27, 2017 23:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AMD-NICK/94dcba281a3292755e150c699e5480c3 to your computer and use it in GitHub Desktop.
Save AMD-NICK/94dcba281a3292755e150c699e5480c3 to your computer and use it in GitHub Desktop.
MySQL GROUP BY несколько колонок
SELECT CONCAT(`type`, "-", `value`) AS `group`, COUNT(*) AS `total`
FROM `trigon_don_purchases`
GROUP BY `group`
ORDER BY `total` DESC
LIMIT 100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment