I have a field in a redshift column that looks like the following:
abcd1234df-TEXT_I-WANT
the characters and numbers in the first 10 digits can be either letters or numbers.
If I use a capture group regex, I would use a poorly written expression like (\w\w\w\w\w\w\w\w\w\w\W)(.*)
and grap the 2nd group
But I'm having trouble implementing this in redshift, so not sure how I can grab only the stuff after the first hyphen