Help for this page

Select Code to Download


  1. or download this
    select * from table1 a, 
                  table2 b left join table3 c on b.id = c.id
     where a.id = b.id
    
  2. or download this
    select * from table1 a inner join
                  table2 b left join table3 c on b.id = c.id
     where a.id = b.id