DAVID F 0 Posted February 27, 2018 Report Share Posted February 27, 2018 Hi All, I have this example: SELECT Orders.OrderID, Customers.CustomerName, Orders.OrderDate FROM Orders INNER JOIN Customers ON Orders.CustomerID=Customers.CustomerID; Can you please help me and tell me why the "FROM" is from "Orders" table and not also from "Customers" table ? Quote Link to post Share on other sites
justsomeguy 1,135 Posted February 27, 2018 Report Share Posted February 27, 2018 It is from the customers table also, there's a join there. Quote Link to post Share on other sites
DAVID F 0 Posted February 28, 2018 Author Report Share Posted February 28, 2018 Thank you very much! Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.