Monday, September 17, 2018

Using Like in the Where clause on SSRS Reports

In most of my SSRS reports I use IN or = for Parameters, but sometimes you may need to use Like in the where clause.  There are a number of ways you can do this, but I am only showing the method I use.

Select * from Test
Where UserName Like '%' + @ParameterName + '%'