Quote:
Originally Posted by sarettah
Data set in a table called testit, fieldname name.
select * from testit where name regexp 'q.*j.*'
Returns:
quinton jackson
quinton rampage jackson
quenton jockson
|
I can't believe it was that easy. Maybe I have read way to much on regex, and the brain overloaded. That is basically what I wanted to do. Just simple partial matching of names! Thank you!