0
php 8 Code project
cakes table: Тoday a customer want a cake set that has minimal calories. Write a query to sort the cakes by calorie count and select the first 3 cakes from the list to offer the customer. Try to combine ORDER BY and LIMIT keywords. Q: 8 Code project
2 Respostas
+ 3
-- SQL tag
-- SQL 8 Code project Cakes 😋
select DISTINCT *
from cakes
order by calories asc
LIMIT 3
+ 1
Cuma Arabi
This is PHP project or SQL project because I don't see any project in PHP language.
This is the side effects of learning multiple languages together.
You are learning:
CSS
JavaScript
Python
SQL
PHP
these languages are different than each other.
mixing many languages may create confusion in syntax. So I would suggest first complete one language then focus on others.