Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用连接从两个表中获取结果,一个表中的一列和 MySQL 中另一表中的一列计数?
select t1.Column1, t2.Column2 from Table1 t1 inner join Table2 t2 on t1.ID = t2.ID
table1.something, table2.somethingelse from table1 join table2 on table1.id = table2.tb1id