Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

sql select on string

# credit to the Stack Overflow user in the source link
# this is just an example to include any words from a given set

SELECT * FROM mytable
WHERE column1 LIKE 'word1'
   OR column1 LIKE 'word2'
   OR column1 LIKE 'word3'
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #sql #select #string
ADD COMMENT
Topic
Name
3+5 =