I want to create a procedure which takes one input parameter(@name) and list all the fully or partially matching results. I used

Select * from Table1
Where Name LIKE @Name

but it didnt work. Can you help plz?

Recommended Answers

All 2 Replies

Did you try using wild cards.

Select * from Table1
Where Name LIKE ('%' + @Name + '%')
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.