Skip to content

Instantly share code, notes, and snippets.

@aaronbronow
Last active May 25, 2018 07:53
Show Gist options
  • Save aaronbronow/c18a0e84bdc98c75b071c59a6bbd8f84 to your computer and use it in GitHub Desktop.
Save aaronbronow/c18a0e84bdc98c75b071c59a6bbd8f84 to your computer and use it in GitHub Desktop.
sql join

JOIN

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