-5

如何使用连接从两个表中获取结果,一个表中的一列和 MySQL 中另一表中的一列计数?

4

2 回答 2

2
select t1.Column1, t2.Column2
from Table1 t1
inner join Table2 t2 on t1.ID = t2.ID
于 2012-04-25T13:58:44.843 回答
1

table1.something, table2.somethingelse from table1 join table2 on table1.id = table2.tb1id

于 2012-04-25T13:57:43.230 回答