get customers with their orders
SELECT c.customerName, o.orderNumber, o.orderDate, o.requiredDate, o.shippedDate, o.status, o.comments
FROM customers c
JOIN orders o ON c.customerNumber = o.customerNumber;
- Public
- ·
- Thu, 26 Jan 2023 15:27:41 GMT