The region column in the db table can be NULL, 0, or 1.
Which SQL demand can output all results with NULL and 1?
Request
SELECT * FROM `db` WHERE `region` != '0' does not work according to the logic of NULL and 0 in this case, as one and the same, how to be?
where table=1 OR table IS NULL- Mikeregion, 1)! = 0 - Zufir