作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将以下查询的结果保存在 SQL 变量中,然后从主表 city 中减去该变量以获得我想要的结果。
SELECT *
FROM
city b1,city b2
WHERE
b1.from_city = b2.to_city
and b1.to_city = b2.from_city
任何帮助将不胜感激。
最佳答案
您似乎想删除(在输出中)具有循环形式目标的行..
如果我说得对,那么您可以使用以下查询 -
select * from city a
where not exists
(select 1 from city b where b.from_city=a.to_city and b.to_city = a.from_city
)
关于mysql - 如何将查询结果存储到sql变量中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9884766/
我是一名优秀的程序员,十分优秀!