sql where part of string match

Solutions on MaxInterview for sql where part of string match by the best coders in the world

showing results for - "sql where part of string match"
Tevin
22 Jan 2019
1select * from docs where DOC_NAME like '%virus%spyware%'
2-- OR
3select * from docs where DOC_NAME like '%virus%' or DOC_NAME like '%spyware%'