From 28f646a6a8b019d12a76e5894344473663b81427 Mon Sep 17 00:00:00 2001 From: riezalroslan Date: Thu, 15 May 2025 15:10:01 +0800 Subject: [PATCH] Update Duplicate1.sql --- Chapter 2/Finding Duplicate Rows/Duplicate1.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Chapter 2/Finding Duplicate Rows/Duplicate1.sql b/Chapter 2/Finding Duplicate Rows/Duplicate1.sql index 6d4dfd5..dc88edf 100644 --- a/Chapter 2/Finding Duplicate Rows/Duplicate1.sql +++ b/Chapter 2/Finding Duplicate Rows/Duplicate1.sql @@ -7,4 +7,5 @@ FROM Customer GROUP BY Customer.CustomerID, Customer.FirstName, Customer.LastName -ORDER BY NUM_ORDERS DESC \ No newline at end of file +ORDER BY NUM_ORDERS DESC +ORDER BY DUPLICATE DESC