Hello All:
I have a multi select prompt and I can use that parameter in the query with IN clause..
I know that IN clause is multiple OR stmts.
Can we make it as multiple AND stmts.
I'm guessing that there's a reason that's not an option. It won't work.
Consider TableA:
select *
from TableA
where val = 'c'
and val = 'b'
would return 0 rows.