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 操作?
我在两个 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