Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
May 13, 2021 10:34 am GMT

Sql Joins Cheat Sheet

Diagram

SELECT * FROM `A` INNER JOIN `B`
 A              B      
JoinWhat
Inner join
Left outer joinA +
Right outer join + B
Full outer joinA + + B

Example

SELECT * FROM order_items \  LEFT OUTER JOIN orders \  ON order_items.order_id = orders.id

Joins are typically added to SELECT statements to add more columns and records.

Reference


Original Link: https://dev.to/hoanganhlam/sql-joins-cheat-sheet-18hh

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To