Is there any way, we could use AND condition in Multiple Select drop down? I mean if the drop down contains 3 values like
- first_option
- second_option
- third_option
I have to do an AND condition. The query we use is
select some_column from table where option in :p_option
which does a logical OR, how do I change it to an AND condition?
something like
select some_column from table where option =first_option and second_option and so on
?? Since the parameters comes from a report, there can be any number of choices coming up. So, how do I do it dynamically?