我有两个名为lines
and的表attribute_values
。从中我想从具有以下 MySQL 查询中给出的条件name
的lines
表中选择字段:
select distinct a.name
from lines a join attribute_values b
where a.advertiser_id = 280
and a.id = b.line_id
and b.name in (11, 18)
and b.value != 0;
如何使用 Ruby 代码编写此查询?