0
I can't pass the cake problem in SQL
I don't seem to find how to call the database as to direct the queries I need. It says I lack input
5 Respuestas
+ 3
Remove the semicolons. Only put a semicolon at the very end, and it's only necessary if you have multiple queries. Get rid of the semicolons and it will work.
+ 5
SELECT * FROM cakes;
ORDER BY calories;
LIMIT 3
0
Can you paste your query? so that we can look into it.
0
Your logic is crrt.. just look into the semicolons.
SELECT * FROM cakes
ORDER BY calories LIMIT 3;
0
Thanks!!!