Skip to content

Commit b1531ab

Browse files
committed
Fix SQL file
1 parent be6647b commit b1531ab

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
1-
SELECT
2-
Customer.CustomerID,
1+
SELECT Customer.CustomerID,
32
FirstName,
43
LastName,
5-
Sum(Email)
4+
Sum(TotalDue)
65
From Customer
76
JOIN Orders on Customer.CustomerID = Orders.CustomerID
87
GROUP BY Customer.CustomerID,
98
FirstName,
109
LastName
1110
ORDER BY Sum(TotalDue) DESC
12-
LIMIT 10
13-
14-
-- Click on Run on active connection to run
11+
LIMIT 10 -- Click on Run on active connection to run

0 commit comments

Comments
 (0)