Medium
SQL Recent Purchasers Query
Write a SQL query to find customers who purchased recently.
📝 Содержимое промпта
Write a SQL query to select the names of all customers who have made a purchase in the last 30 days. Assume two tables: 'Customers' (id, name) and 'Orders' (id, customer_id, date).