Is it possible to do a SQL query that returns only the lines that have a NULL value without having to specify each column?
somthing like this
and NOT this (the database has 30+ columns)
please only pure SQL-querys
not compounded with code
somthing like this
B4X:
SELECT * IS NULL FROM table1
and NOT this (the database has 30+ columns)
B4X:
SELECT * FROM table1 WHERE col1 IS NULL OR col2 IS NULL
not compounded with code