Created
June 13, 2021 08:53
-
-
Save bartubozkurt/bc47a7ee8de8c7455d448f30657b280a to your computer and use it in GitHub Desktop.
JOIN Three Tables Selects all orders with customer and shipper information:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT Orders.OrderID, Customers.CustomerName, Shippers.ShipperName | |
FROM ((Orders | |
INNER JOIN Customers ON Orders.CustomerID = Customers.CustomerID) | |
INNER JOIN Shippers ON Orders.ShipperID = Shippers.ShipperID); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment