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...
Select * from WORKER where Name Like '%' + @name + '%'