有什么办法,我们可以在Multiple Select下拉菜单中使用AND条件吗?我的意思是如果下拉列表包含3个值,如
我必须做一个AND条件。 我们使用的查询是
select some_column from table where option in :p_option
执行逻辑OR,如何将其更改为AND条件?
select some_column from table where option =first_option and second_option and so on
?由于参数来自报告,因此可以有任意数量的选择。那么,我该如何动态地做到这一点?