I have a simple Select like this
SELECT * FROM `table` WHERE fk_id=10020
It’s works, but there are some fields that is NULL. There isn’t a pattern so a did
SELECT * FROM `table` WHERE fk_id=10020 AND NOT NULL
trying to select only results with all fields with data.
but did not worked, Results in a Empty Results, it did not bring anything.
How could I do this – exclude lines results that have null value in any field?
try
repeat
<column> IS NOT NULLfor each column you need