Code:
When i execute the following query:
select * from view1/table1
where col1 in (select col from table2)
and col2=something and col3=something and col4=something
...
i get an error, but when i do the same thing using the query
select * from view1/table1
where col1 in ('A','B')
and col2=something and col3=something and col4=something
i do not get an error.
Is it something related with the order of execution of inner and outer queries?.Or is there another alternative?
Comment