SQL - Advanced Query Patterns
Given the table
orders with column customer_id, what will this query return?SELECT customer_id FROM orders GROUP BY customer_id HAVING COUNT(*) > 2;
