I have a report in Report Builder that works fine with a Parameter Field (@job_no). I now wish to add a second parameter encapsulated inside a LIKE argument. Something along the lines of

WHERE (dbo.jm_job.job_no = (@job_no)) AND (dbo.jm_work_order.wo_desc LIKE %'(@wo_desc)'%)

I've tried various styles or argument, but I'm missing something. Thanks

Giles

link|improve this question

65% accept rate
Shouldn't that be LIKE '%' || @wo_desc || '%'? – bdares Nov 1 '11 at 11:51
again, trying various connertations, but still failing – giles Nov 1 '11 at 11:55
2  
SQL Server => LIKE '%' + @wo_desc + '%' should work – DavidEG Nov 1 '11 at 11:56
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.