Skip to content

Instantly share code, notes, and snippets.

@TechplexEngineer
Created October 9, 2015 13:01
Show Gist options
  • Select an option

  • Save TechplexEngineer/ce16c0e4698d7e4016c2 to your computer and use it in GitHub Desktop.

Select an option

Save TechplexEngineer/ce16c0e4698d7e4016c2 to your computer and use it in GitHub Desktop.
Create a histogram of UUIDs by their first character
SELECT LEFT(`assetuuid`,1) as `ST`, count(*) as `CNT`
FROM `tex`
GROUP BY `ST`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment