I have a simple select query:
SELECT A
FROM B
WHERE A IN :conditions
where A is a char.
If i do the full query as:
SELECT A
FROM B
WHERE A IN ('A','E','I','O','U')
it works
but if i use the parameter, when i try to execute with ORACLE SQL Developer i cannot get it to work.
I've already tried to submit the parameter as:
1* ('A','E','I','O','U')
2* 'A','E','I','O','U'
3* A,E,I,O,U
and query returns no results
What's the correct syntax to do so?
Thank U all