Giả sử hoạt động là một "trường boolean" (int nhỏ, với 0 hoặc 1)
# Find all active users
select * from users where active
# Find all inactive users
select * from users where NOT active
Nói cách khác, toán tử "NOT" có thể được áp dụng trực tiếp trên trường boolean không?