Answers for "sql where part of string match"

SQL
0

sql where part of string match

select * from docs where DOC_NAME like '%virus%spyware%'
-- OR
select * from docs where DOC_NAME like '%virus%' or DOC_NAME like '%spyware%'
Posted by: Guest on April-19-2020

Code answers related to "sql where part of string match"

Code answers related to "SQL"

Browse Popular Code Answers by Language