作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想知道在 SQL 中是否可以返回一行来显示(以下表为例)仅显示 id 2 的行:
table1 ( id 2 and 4 are missing value b)
id value
1 a
1 b
1 c
1 d
2 a
2 c
2 d
3 a
3 b
3 c
3 d
4 a
4 c
4 d
我基本上想找到“b”不存在但“a”对于任何 id 仍然存在的所有实例,并为任何给定的 id 返回一行。我已经尝试过类似的方法,但它没有像我希望的那样工作:
select * from table1
where not exists (select distinct value from table1 where value b)
我希望最终结果是这样的,识别“b”不存在但“a”存在的值(不显示该值,对于最终目标来说是不需要的):
result table
id
2
4
最佳答案
SELECT id
FROM table1 t1
WHERE
value = 'a'
AND NOT EXISTS (
SELECT *
FROM table1 sub
WHERE sub.id = t1.id AND sub.value = 'b'
)
关于sql - 选择 a 和下一个是 c 的位置,跳过 b,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13297140/
我是一名优秀的程序员,十分优秀!