使用 != 而不是 <>

单纯的因为 != 读起来更像 “不等于”,更接近于我们口语表达的方式:

-- Good
select count(*) as paying_users_count
from users
where plan_name != 'free'