2
興趣我有一個查詢說,MySQL查詢 - 不使用內部查詢
select col1,col2 from table1;
其返回多行2列。我想在另一個查詢的條件中使用這兩個值。像
select col3,col4 from table2 where col5=col1 and col6=col2;
col1
哪裏和col2
東西是所述第一查詢的結果值。
目前我已經使用內部查詢類似
select col3,col4 from table2
where col5 in (select col1 from table1)
and col6 in (select col2 from table1);
但我不想使用內查詢如上所示的一個,因爲它會減慢帶來的結果。
請建議。
感謝它的工作。我已經使用了第一個查詢,因爲我在已經存在的查詢中有很多複雜性。 – Arun