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.
現在、次の SQL クエリを使用しています。
("SELECT * FROM `form` WHERE '1' IN (show1) AND 'agree' NOT IN (test)")
ただし、ORを追加する方法がわかりません..「同意する」または「同意しない」と書かれている場合は、除外する必要があります
何か案は?
show1 と test が列であり、これが Mysql 関連であると仮定すると、これは機能するはずです。
"SELECT * FROM `form` WHERE show1 IN ('1') AND test NOT IN ('agree', 'disagree')"
比較の左側に列を配置することを好みます:)