Created
June 13, 2021 08:44
-
-
Save bartubozkurt/265a5cdbdeb2a60e714b3a7fac03290f to your computer and use it in GitHub Desktop.
inner join
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, Orders.OrderDate | |
FROM Orders | |
INNER JOIN Customers ON Orders.CustomerID=Customers.CustomerID; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment