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.
NAND と NOR のクエリを作成する方法を説明するのに誰か助けてくれませんか?
私は混乱していますか?クエリでの NAND および NOR 操作を理解するのに役立つ良い例はありますか?
2 つの SQL クエリ間で AND および OR 操作を行っていましたが、NAND/NOR に関連するものを検索していると、チュートリアルが見つかりません。
Not + And / Not + Or を組み合わせることができます
例えば
create table test( v1 bit, v2 bit ); insert into test values ( false, false), (false,true), (true,true), (true,false); select v1, v2, not (v1 and v2) "nand", not (v1 or v2) "nor" from test
http://sqlfiddle.com/#!2/0828b/3