0
SQL
Why this query is wrong? Write a query to sort the cakes by calorie count and select the first 3 cakes from the list to offer the customer. SELECT Names FROM Cakes WHERE calories <= 100 ORDER BY calories LIMIT 3 ;
1 Antwort
+ 2
SELECT * FROM Cakes
ORDER By calories
LIMIT 3 ;