How should I do query where
- I have (table1) row which can have none or several rows referencing to it in other table
- These referencing (table2) rows have colum1 that can be null or date
I would like to have all rows from table1 which have all rows column1 not as null or no rows at all, in table2.
Of course the basic sql goes like:
SELECT table1.* FROM table1 JOIN table2 ON table2.id = table1.table2_id
But what comes next?