Skip to content
Advertisement

How to re-use result from a SELECT statement?

My goal is to re-use the result from a SELECT statement to be used in SQL EXISTS statement.

The general idea looks like this:

The actual SQL statement I am trying to reduce:

Advertisement

Answer

This query:

Doesn’t really make sense. It is saying to return all rows if col = 1 is in the table — but then it filters to check if any row has col = 1. So it is equivalent to:

I strongly suspect that you intend NOT EXISTS — so get everything with 1. If there is no 1 then return everything:

This should work fine with tables — and is in fact probably optimal with the right indexes.

If “table” is really a complex query, then you might consider window functions:

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