Find this is SQL: word, word

Guys how can I find all words that look like this: word, word

PHPMyadmin → Apache

P.S. I mean some like this: [a-z], [a-z]

Maybe something like this

SELECT * FROM table WHERE column REGEXP "([a-z]+)\,\s([a-z]+)"

Returns 0 results buddy. Any other ideas please.
Thanks

I just used this and man it worked :slight_smile:
REGEXP '[A-Za-z], [A-Za-z]'

1 Like

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.