Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请如何对单列进行多个 NOT 操作的 MySql SELECT ?
Example:- WHERE column != 'a' column != 'b' column != 'c'
你只是失踪了AND
AND
WHERE column != 'a' AND column != 'b' AND column != 'c'
你也可以用一些东西NOT IN()
NOT IN()
WHERE column NOT IN ('a','b','c')