Skip to content
Advertisement

‘WITH’ clause does not work with in operator

I have a simple query:

It should create a MaxSal temporary table and then in the WHERE section it should check whether the Salary, DepId are inside said table. Unfortunately, this query gives me ORA-00920: invalid relational operator which I guess is referring to the in operator. If I put the Sub-query directly instead of first putting it in a temp table, everything works as expected.
Can somebody tell me why it isn’t working with the WITH clause?

Advertisement

Answer

You need a table reference to refer to the CTE and that, in turn, requires a FROM clause. You can do what you want using a subquery

That said, RANK() is much simpler:

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement