0

有 3 个表:table1、table2 和 table3。

查询是:

select column1 from table1 where variable1=@value1 AND variable2=@value2

这里,value1 和 value2 是存储在表 table2 和 table3 中的全部数据

4

2 回答 2

2

这个问题不是很清楚,但最接近的猜测是

SELECT column1
FROM table1
JOIN table2 ON table1.variable1 = table2.value1
JOIN table3 ON table1.variable2 = table3.value2
于 2012-11-21T06:38:34.613 回答
1

尝试这个

select colum1
from table1
where
    variable1 in (select column2 from table2) and
    variable2 in (select column3 from table3)
于 2012-11-21T06:36:45.650 回答