0

如何在单个 MySQL 查询中执行此类操作?

select `value_a` 
from `table_1` 
where `value_b` = (select `value_b` from `table_2` where `value_c` = `x`);

我使用 CodeIgniter,所以我可以使用 Active Records。

4

1 回答 1

5

您也可以JOIN为此使用 a:

select t1.value_a
from table_1 t1
inner join table_2 t2
  on t1.value_b = t2.value_b
where t2.value_c = 'x'

您也可以使用现有的查询,但x被反引号而不是单引号包围:

select `value_a` 
from `table_1` 
where `value_b` = (select `value_b` from `table_2` where `value_c` = 'x);
于 2013-01-17T23:19:14.693 回答