SQL的INTERSECT与MySQL模拟INTERSECT

dafenqi
2024-03-22 / 0 评论 / 13 阅读 / 正在检测是否收录...

SQL的INTERSECT

在SQL中,INTERSECT是对两个SQL语句的查询结果做与运算,即值同时存在于两个语句才被选出(交集)。

select id from table1
-- 输出 id(1,2,3)
intersect 
select id from table2
-- 输出 id(2,3,4)
//得出 id(2,3)

MySQL模拟INTERSECT

MySQL中没有INTERSECT函数,我们可以使用INNER JOINDISTINCT来获取这两个结果集的交集。

SELECT DISTINCT t1.value 
FROM table1 t1
INNER JOIN table2 t2 ON t1.value = t2.value

INTERSECT或join进行与运算条件

  • 列的顺序和数量必须相同。
  • 相应列的数据类型必须兼容或可转换。
0

Deprecated: strtolower(): Passing null to parameter #1 ($string) of type string is deprecated in /www/wwwroot/testblog.58heshihu.com/var/Widget/Archive.php on line 1032

评论 (0)

取消