create table t1_outerjoin(a int, b int , c int);
create table t2_outerjoin(a int);
create table t3_outerjoin(a int, b int);
create table t4_outerjoin(a int);


SELECT * FROM t1_outerjoin
                      LEFT JOIN
                      (t2_outerjoin, t3_outerjoin LEFT JOIN t4_outerjoin ON t3_outerjoin.a=t4_outerjoin.a)
                      ON (t1_outerjoin.a=t2_outerjoin.a AND t1_outerjoin.b=t3_outerjoin.b)
          WHERE t1_outerjoin.c > 5

 

相关文章:

  • 2022-02-17
  • 2021-11-17
  • 2021-06-03
  • 2021-05-22
  • 2021-08-09
  • 2021-11-04
猜你喜欢
  • 2021-05-06
  • 2021-04-28
  • 2021-09-19
  • 2022-12-23
  • 2021-12-31
相关资源
相似解决方案