Search code examples
sqlsql-server-2008pattern-matchingsql-like

How to adjust SQL LIKE function?


I want to make this kind of query:

create procedure something
  @name varchar(13)
as
begin

  select * 
   from WORKER
  where NAME LIKE "%@name%"

end

For input @name=ho, I want output every row that contains NAME which sounds ho,

for example HOuse, soHO, broHOw...


Solution

  • Select * from WORKER where Name Like '%' + @name + '%'