我在数据库中有四个表T1,T2,T3,T4 .I必须同时考虑T3和T4的结果(但不能将它们连接在一起,因为它省略了一些行)我尝试了下面的查询,它起作用了 select * from T1join T3 on T3.b=T2.bselect * from T1join T4 on T4.b=T1.b 有没有办法在不使用联合的情况下同时考虑两个表
如何在mysql中使用union和order by?select * from _member_facebook ON _member_facebook._fb_owner=_member_pts._promote_point = 9 UNION ALLinner join _member_pts_pro
如何将内连接添加到以下union distinct查询?select cn_to from connections a where cn_from = '111'select cn_from from connectionsb where cn_to = '111'表是names和connections。inner join部分出现故障。你能帮帮忙吗?