you can see what im trying to do here:
select *, count(*) as count
from `songs`
where `band` REGEXP '^[^[:alpha:]]'
group by `band`
order by `band` asc
bands can be:
avenged sevenfold
3 days grace
led zeppelin
98 mute
back street boys
beastie boys
i need this to select the bands whose first-character is not an alpha, and count how many rows exist for each band.
unfortunately my current query just seems to group all of them together that match the REGEXP.