我需要从表 1 中找到组 id = 1 (结果 1)的项目,然后是组 id = 1 的那些项目,转到表 2 过滤结果 1 + 仅选择那些价格 id = 200 表 1、项目 id、组 id 表2、商品id、价格id
我尝试过选择内部连接,但无法过滤。union all 返回错误,因为列数据不同。
select item id, group id
from table 1
where groupid = '1'
inner join
select item id, price id
from table 2
where price id = '200'