In SQL, if you want to perform a SELECT with a wildcard, you\'d use:
SELECT * FROM table_name WHERE field_name LIKE \'%value%\'
If you wanted t
SELECT * FROM table_name WHERE field_name LIKE '%one' OR field_name LIKE '_two' OR field_name LIKE 'three[abv]'