- 3
Project 1 of SQL:A local bakery creates unique cake sets. Each cake set contains three different cakes.
im using this syntax Select *from table_name oder by calories, limit 3; Still im not getting desired output Help!
3 Antworten
0
Here is the right answer
Select * from cakes order by calories limit 3;
- 7
Please correct your Query code.
Also, the correct code is
Select *from cakes
order by calories
limit 3
- 11
A local bakery creates unique cake sets. Each cake set contains three different cakes.
Here is the cakes table: