Skip to content
Advertisement

Oracle SQL Unions error “query block has incorrect number of results columns”

I’m trying to write a query that pulls data from a lot of tables, and has about 20 unions. It’s pulling the same information repeatedly, but with more layers each time, to show a sort of tree.

I want to compare the final two columns. I’m using a case to do this, and if I add a case to this query then I get the error “query block has incorrect number of results columns”. This seems to be because the final select in the union has an extra column (the compare case).

Is there any way to work around this? I don’t want to add the case to each select, as this would add about 15 more columns that I don’t want.

Advertisement

Answer

Use a sub-query:

Or use a sub-query factoring clause:

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