in reply to Re: SQL pulling information
in thread SQL pulling information
all this does is return 1 or 0. in your situation, your select will look something like this:SELECT "string" REGEXP "some regex";
SELECT col1, col2, ... FROM table WHERE col1 REGEXP 'your regex'
|
|---|