Created
October 9, 2015 13:01
-
-
Save TechplexEngineer/ce16c0e4698d7e4016c2 to your computer and use it in GitHub Desktop.
Create a histogram of UUIDs by their first character
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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