Answers for "SQL select records containing text"

SQL
14

sql where contains

SELECT * FROM mytable
WHERE column1 LIKE '%word1%'
   OR column1 LIKE '%word2%'
   OR column1 LIKE '%word3%'
Posted by: Guest on January-22-2020
0

t_sql contains

SELECT * FROM table WHERE Contains(Column, "test");
Posted by: Guest on February-02-2021

Code answers related to "SQL select records containing text"

Code answers related to "SQL"

Browse Popular Code Answers by Language