Working with Reporting Services Filters – Part 2: The LIKE Operator
Posted
by smisner
on SQL Blog
See other posts from SQL Blog
or by smisner
Published on Thu, 30 Dec 2010 18:06:51 GMT
Indexed on
2010/12/30
18:59 UTC
Read the original article
Hit count: 329
ssrs
In the first post of this series, I introduced the use of filters within the report rather than in the query. I included a list of filter operators, and then focused on the use of the IN operator. As I mentioned in the previous post, the use of some of these operators is not obvious, so I'm going to spend some time explaining them as well as describing ways that you can use report filters in Reporting Services in this series of blog posts.
Now let's look at the LIKE operator. If you write T-SQL queries, you've undoubtedly used the LIKE operator to produce a query using the % symbol as a wildcard for multiple characters like this:
select * from DimProduct where EnglishProductName like '%Silver%'
And you know that you can use the _ symbol as a wildcard for a single character like this:
select * from DimProduct
where EnglishProductName like '_L Mountain Frame - Black, 4_'
So when you encounter the LIKE operator in a Reporting Services filter, you probably expect it to work the same way. But it doesn't. You use the * symbol as a wildcard for multiple characters as shown here:
Expression | Data Type | Operator | Value |
[EnglishProductName] | Text | Like | *Silver* |
Note that you don’t have to include quotes around the string that you use for comparison.
Books Online has an example of using the % symbol as a wildcard for a single character, but I have not been able to successfully use this wildcard. If anyone has a working example, I’d love to see it!
© SQL Blog or respective owner