>我有2个表:
表报告
id | name
-------------
1 | test 1
2 | test 2
3 | test 3
表reports_access
id_table | group_id
-----------------------
1 | 1
1 | 2
1 | 3
1 | 4
2 | 1
2 | 2
我需要根据登录用户的group_id访问报告,一个用户属于多个组。
我试过了:
SELECT reports.*
FROM reports
WHERE (
SELECT group_id
FROM reports_access AS repacc
WHERE repacc.id_table = reports.id
) IN (1, 3)
我收到此错误:
子查询返回多于 1 行
我不明白我是否可以使用一个请求做我想做的事情,因为我需要测试一个数组是否属于其他数组。
我错过了什么吗?
我想你正在寻找这个:
SELECT reports.*
FROM reports
WHERE id in (
SELECT repacc.id_table
FROM reports_access
where group_id
IN (1, 3) )
使用JOIN
怎么样?
SELECT DISTINCT r.*
FROM reports r
INNER JOIN reports_access ra
on ra.id_table=r.id
where ra.group_id in (1,3)