gpt4 book ai didi

使用 AND、OR 和 NOT 的 mysql 查询

转载 作者:可可西里 更新时间:2023-11-01 06:51:51 24 4
gpt4 key购买 nike

假设我有一个文章表,其中的文章与主题具有多对多的关系。分配给文章的每个主题都有一个 type 字段,它可以包含 3 个值中的一个 ANDNOTOR.

Articles
id
....

Topics
id
....

ArticleTopics
article_id
topic_id
type

我想创建一个查询,返回所有具有以下内容的文章:

ALL of the following topics: 1, 2, 3 (AND association)
AND
ANY of the following topics: 4, 5, 6 (OR association)
AND
NONE of the following topics 7, 8 (NOT association)

我该如何着手创建这个查询?

提前致谢!

最佳答案

ALL 和 NOT 部分非常简单,您只需用 AND 将它们链接起来即可:

从 Y 中选择 X,其中 a AND b AND c AND NOT d AND e AND NOT e。

OR 介于:

从 Y 中选择 X WHERE ((a AND b AND c) AND (d OR e OR f)) AND NOT g AND NOT h

用比较替换小数字,您就完成了。因此,如果您想在代码中执行此操作,请对您的条件进行排序,然后将它们链接在一起作为一个字符串。小心避免 SQL 插入。

关于使用 AND、OR 和 NOT 的 mysql 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4153137/

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