Hi.
I have a table with a column whose values contain regular expressions. I want to select the row(s) from this table whose regular expressions match the user input. I know how to use REGEXP to match a regular expression against values stored in a table, but I need to do the opposite.
I was really hoping this was possible within MySQL. The alternative I have at moment is reading ALL regular expressions (into my PHP script) and looping through them, testing as I go but this doesn't seem ideal.
Any help is much appreciated.
Cheers!
Steven