Like operator in sql server
- by Geetha
Hi All,
i want to get all the record from the database which contain atleast one word from the input string.
Ex: input=Stack over flow
select * from sample where name like '%stack%' or name like '%over% or name like '%flow%'
Geetha.