I've got this field in my database that holds a description. Is there a way to search for words in that field and how do you do it?
Thanks
SELECT * FROM table WHERE field LIKE '%word%'
Yep basically % is wildcard in SQL 🙂