Say I have db content with the word "supercomputer". I want to search using the following:
select * from content where content REGEXP '[[:<:]]super*[[:>:]]';
I want the user doing the search to be able to add wildcards like ? and *. I want whole word searches unless the user does as I explained above so using [ REGEX 'super' ] isn't an option.
I'd think this would work, but I guess I'm still to new to using expressions.