Você também pode usar um
JOIN
por esta: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'
Você também pode usar sua consulta existente, mas o
x
é cercado por acentos graves e não aspas simples:select `value_a`
from `table_1`
where `value_b` = (select `value_b` from `table_2` where `value_c` = 'x);