SQL双重比较

发布于 2024-10-31 04:10:08 字数 410 浏览 0 评论 0原文

假设我有以下 SQL 列:

SQL table

现在,我想要执行以下操作: 在 col_1 中,我的值为“一”。如果我检查在 col_2 中得到的相应值,我会发现“两个”和“三个”。所以结果将是“二”和“三”。但从这个结果集中,我只想得到那些在 col_1 中使用的、在 col_2 中具有相应值“one”的值。所以: 'two',在 col_1 中,确实col_2 中具有“one”,但三没有。因此,从结果集中的 {'two', ' Three'} 中将仅保留 {'two'}。

如何使用 MySQL 进行这样的双重检查查询?

提前致谢!

let's say I have following SQL column:

SQL table

Now, I want to do following:
In col_1, I have the value 'one'. If I check, which corresponding values I get in col_2 I get for that, I find 'two' and 'three'. So the results would be 'two' and 'three'. But from this result set, I want to only have those, that, used in col_1, have, in col_2, the corresponding value 'one'. So:
'two', in col_1, does have 'one' in col_2, but three doesn't. So, from the result set of {'two', 'three'} only {'two'} would remain.

How can I make such a double-checking query with MySQL?

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

早茶月光 2024-11-07 04:10:08

这是通过使用给定条件JOIN将表自身连接来完成的。假设您的表名称是 table

SELECT t1.col_1
FROM table t1 JOIN table t2 ON t1.col_2=t2.col_1
WHERE t1.col_1=t2.col_2 
AND t1.col_1='one';

这给出:

 col_1 
-------
 one
(1 row)

This is done by JOINing a table to itself with a given condition. Assuming your table name is table:

SELECT t1.col_1
FROM table t1 JOIN table t2 ON t1.col_2=t2.col_1
WHERE t1.col_1=t2.col_2 
AND t1.col_1='one';

This gives:

 col_1 
-------
 one
(1 row)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文