MySQL 怎样通过相同字段,查询另一个表中的数据

2025-04-13 13:56:45
推荐回答(1个)
回答1:

selete * from tb1 as t1
inner join tb2 as t2
on t1.id=t2.id
这个方法也行,查询的方法挺多的,这个比较简单