eng
competition

Text Practice Mode

sql_cte_chatgpt

created Mar 17th, 13:52 by SergelenZorigt


0


Rating

29 words
20 completed
00:00
SELECT  
    c.CustomerID,  
    c.FirstName,  
    c.LastName,  
    SUM(o.OrderTotal) AS TotalSpent
FROM  
    Customers c
JOIN  
    Orders o ON c.CustomerID = o.CustomerID
GROUP BY  
    c.CustomerID, c.FirstName, c.LastName
ORDER BY  
    TotalSpent DESC
LIMIT 5;
 

saving score / loading statistics ...