πΌ BUSINESS QUESTION
"Show me orders with customer names β not just IDs."
SELECT Top 10 Orders.OrderID, Customers.CustomerName, Orders.OrderDate
FROM Orders
INNER JOIN Customers ON Orders.CustomerID = Customers.CustomerID;
π KEY TAKEAWAY
This is a JOIN β connecting two tables through a shared column (CustomerID). This is where SQL gets powerful. We'll master this in Week 4. For now, just see that it's possible!