How do I get not-null results from a sub query in SELECT statement?
SELECT a, b, c,
(SELECT d
FROM table2
WHERE ...) as d
FROM table 1
WHERE ...
I want to get results only when all values (a, b, c , d) not Null. It won't be kind of weird/non-efficient to use the same sub-query in main WHERE clause as well but with EXISTS?