I want to select all words like
baaac
czzzd
dkcvvvvz
They all have letters such ANY letters such as a,z, and v in them that are repeated more than twice in a sequence
Is that possible with REGEX? Here is how I query my table for three repetitions of letter a, I want to generalize this a little bit so that I don't have to query for every letter
select word FROM `allwords` WHERE word REGEXP '^.*aaa.*$'