SQL - Structured Query Language Joining Multiple Tables Questions and Answers
A data analyst needs to generate a report listing all customers and their corresponding order dates. The report must include every customer, even those who have never placed an order. The two tables are `Customers` (with `CustomerID`, `CustomerName`) and `Orders` (with `OrderID`, `CustomerID`, `OrderDate`). Which SQL query correctly accomplishes this?