0


MYSQL两个查询条件取并集然后进行查询

这种sql听着有点复杂,但是仔细想一下其实是个很简单的sql,首先查出来需要的sql

select dept_id from sys_dept sd where AREACODETYPE ='4' and AREACODE ='1111'

在这里插入图片描述
然后咱们sql第一个条件查出来了,然后把这个sql当成条件继续进行查询

select role_id from sys_role_dept srd,(select dept_id from sys_dept sd where AREACODETYPE ='4'and AREACODE ='1111') a
where srd.dept_id = a.dept_id

在这里插入图片描述
然后可以继续进行关联查询

select user_id from sys_user_role sur,(select role_id from sys_role_dept srd,(select dept_id from sys_dept sd where AREACODETYPE ='4'and AREACODE ='1111') a
where srd.dept_id = a.dept_id) b where sur.role_id = b.role_id

在这里插入图片描述
然后第一个结果出来了,然后我们查第二个结果
和上面逻辑差不多,最终代码块我就不解释了

select user_id from  sys_user_dept sud,(select dept_id from sys_dept sd where AREACODETYPE ='4'and AREACODE ='1111') a
where sud.dept_id = a.dept_id

在这里插入图片描述

然后第一列和第二列他们的结果是不一样的,但是有相似地方,然后这个时候我们就可以进行并集取值了。

select a.user_id as dept_id from(select user_id from sys_user_role sur,(select role_id from sys_role_dept srd,(select dept_id from sys_dept sd where AREACODETYPE ='4'and AREACODE ='1111') a
where srd.dept_id = a.dept_id) b where sur.role_id = b.role_id) a,(select user_id from  sys_user_dept sud,(select dept_id from sys_dept sd where AREACODETYPE ='4'and AREACODE ='1111') a
where sud.dept_id = a.dept_id)b where a.user_id = b.user_id

在这里插入图片描述

标签: mysql 数据库 sql

本文转载自: https://blog.csdn.net/z45351/article/details/125519927
版权归原作者 小新爱编程 所有, 如有侵权,请联系我们删除。

“MYSQL两个查询条件取并集然后进行查询”的评论:

还没有评论