SyntaxFix
Write A Post
Hire A Developer
Questions
No, you will have to use OR to combine your LIKE statements:
OR
LIKE
SELECT * FROM table WHERE column LIKE 'Text%' OR column LIKE 'Link%' OR column LIKE 'Hello%' OR column LIKE '%World%'
Have you looked at Full-Text Search?