gpt4 book ai didi

查询中的 MySQL NAND/NOR 操作

转载 作者:搜寻专家 更新时间:2023-10-30 20:04:59 27 4
gpt4 key购买 nike

谁能帮我解释一下如何为 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

关于查询中的 MySQL NAND/NOR 操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16438440/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com