Answered
SQL Report Wildcard
What is the wildcard for SQL reports? I've tried several things including % and * without success. When i run this I get APP1 results but that's it.
where (Applications.Name = 'APP1' OR Applications.Name = '%APP2%') AND
0
Comments
You'd have to use
OR Applications.Name LIKE '%APP2%'
for the wildcard to be evaluated.Perfect! Thanks!