आप या तो उनमें शामिल होने का प्रयास कर सकते हैं (उन्हें एक साथ जोड़ना) या यूनियन का उपयोग करें (एक में दो चयनों को मिलाएं);
http://dev.mysql.com/doc/refman/5.0 /hi/join.html
select a.col1, b.col1
from table1 a
inner join table2 b on a.id = b.id;
http://dev.mysql.com/doc/refman/5.0 /hi/union.html
select name as col1, surname as col2 from table1
union
select location as col1, desc as col2 from table2;
जॉन