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でこのようなことを達成することは可能ですか?
ID!= {2,3}
ここで、IDは列です。または、複数のORステートメントを使用する必要がありますか?
はい、not in:
not in
ID not in (2,3)
あなたはここでもっと読むことができます。
あなたは試してみる必要があります
ID NOT IN (2,3)
または
ID <> 2 or ID <> 3