Załóżmy, że aktywne to „pole logiczne” (małe int, z 0 lub 1)
# Find all active users
select * from users where active
# Find all inactive users
select * from users where NOT active
Innymi słowy, czy operator „NIE” można zastosować bezpośrednio w polu boolowskim?