+ 6
CAKES SQL problem not working?
Hi I wrote the correct solution (at last I think it's the correct one): SELECT * FROM cakes ORDER BY calories LIMIT 3; but I have no output ???
9 Respostas
+ 8
It happened with many,I think it's new bug. Try download last update, if it doesn't working again, you must wait after sololearn fixed it.
Happy Coding!
+ 6
This works for me:
SELECT * FROM cakes
ORDER BY calories ASC LIMIT 3;
+ 2
philippe giammarinaro It can be Network Problem.
It is working properly for me.
+ 2
Asc means ascribed in increasing order
+ 2
SELECT * FROM cakes
ORDER BY calories ASC LIMIT 3;
+ 1
I tested on my sololearn appli (updated) on my smatphone or from the web (https://www.sololearn.com/learning/eom-project/1060/1056) and it s not working.
+ 1
Sql has been fixed yesterday afternoon.
+ 1
What is ASC ?
0
SELECT name, calories
FROM cakes ORDER BY calories LIMIT 3;