0
What's wrong with my code for Cakes SQL??
Can't seem to figure out what's wrong with my code for the Cakes project in SQL? Can someone help? My code: SELECT * FROM cakes; ORDER BY calories LIMIT 3;
2 Respuestas
+ 4
Remove the semicolon in the first line.
0
SELECT name, calories
FROM cakes ORDER BY calories LIMIT 3;