Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 424 Bytes

Join.md

File metadata and controls

23 lines (15 loc) · 424 Bytes

Join

INNER JOIN

  • SELECT * from A JOIN B ON condifition
  • Select all records from A and B where the join condition is met
  • DEFAULT Join



LEFT JOIN

  • SELECT * from A LEFT JOIN B ON condifition
  • Select everything from A, along with any matching records in B


Right Join

  • Nothing different from LEFT JOIN except for sequence.