I have Version 11.0.2.1766
In the manual (section 7.5) there is example :
Just to mention that actually it must be like this (with single quotes, otherwise it wont work):
So now my question. When I try to use multiselect substitution variables according to the manual it must be lie this:
But I dont get any values, obviously because it concatenates all entries and searches for them. How to pass the separate values so that they are recognized and eventually found in the db?
P.S. And we might need to add the single quotes as well on top.
In the manual (section 7.5) there is example :
SQL:
select * from emp
where deptno = &<name=''Department number''>
order by ename
Just to mention that actually it must be like this (with single quotes, otherwise it wont work):
SQL:
select * from emp
where deptno = '&<name=''Department number''>'
order by ename
So now my question. When I try to use multiselect substitution variables according to the manual it must be lie this:
SQL:
select * from emp
where deptno IN (&<name=''Department number''
list=''select deptno from dept order by dname''
multiselect=''yes''>)
order by ename
P.S. And we might need to add the single quotes as well on top.
Last edited: