Answers for "sql check if list of phrases exist in a string"

R
13

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

sql check if list of phrases exist in a string

$out=select * from table_name;
Posted by: Guest on December-07-2020

Code answers related to "sql check if list of phrases exist in a string"

Browse Popular Code Answers by Language