Assume active is a "boolean field" (tiny int, with 0 or 1)
-- Find all active users
select * from users where active 
-- Find all inactive users
select * from users where NOT active 
In words, can the "NOT" operator be applied directly on the boolean field?
 
     
     
     
     
     
     
     
     
    