+ 1
SQL cakes challenge does not work
I wrote out the code and the names and calories are being displayed, but they're being pushed into all lower case and the challenge marked that incorrect. SQL is supposed to be case insensitive so I have no idea what's going on.
2 Respuestas
0
You can use the InitCap() function. It worked for me.
It’s a workaround until the bugs are squashed😀
https://oraclesql.in/initcap/
0
SELECT name, calories
FROM cakes ORDER BY calories LIMIT 3;