三表连接a,b,c a和b先内连接,再和c外连接,该怎么写

2019-03-25 13:41|来源: 网路

三表连接a,b,c a和b先内连接,再和c外连接,db2 该怎么写
select * from a inner join b
on a.id = b.id
left outer join c on b.oid = c.oid
这样写对不对?

相关问答

更多