SQL - GROUP BY and HAVING
Given the table
orders with columns customer_id and order_total, what will this query return?SELECT customer_id, COUNT(*) AS order_count FROM orders GROUP BY customer_id ORDER BY order_count ASC;
