作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
假设我有一个文章表,其中的文章与主题具有多对多的关系。分配给文章的每个主题都有一个 type
字段,它可以包含 3 个值中的一个 AND
、NOT
和 OR
.
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/
我是一名优秀的程序员,十分优秀!