I have a column that have fields of value like "ABC1234"
I want to do a SELECT that groups by any of these fields that start with "ABC"
So the result will give:
AAA 5
AAB 1
AAC 12
AAD 15
Where the number is how many entries were found that start with the corresponding 3 letters.
Any ideas?