课程: Level Up: SQL
今天就学习课程吧!
今天就开通帐号,24,700 门业界名师课程任您挑!
Print a menu
(video game sounds) - When customers come to visit our restaurant they want to see what we can serve them. In our database, we have a list of the dishes we serve, but in order to print menus we need to retrieve that information. Using SQL, let's create a few different menus. Here's the challenge. First, output all the dishes from the dishes table, sorted by price, lowest to highest. Then output two customized menus, one for an appetizer hour with just appetizers and beverages and one with all the items except beverages. Those two should be sorted by type of dish. Pause the video here and come up with your solution. Then, I'll show you how I solve this challenge. (upbeat music) To solve this challenge, I used the select keyword. To output a menu of all the dishes sorted by price, I wrote select type, name, price, description, from dishes, order by price. We could also have used select star to see all the columns but I…
内容
-
-
-
Create invitations for a party2 分钟 3 秒
-
(已锁定)
Create a table to store information3 分钟 24 秒
-
(已锁定)
Print a menu2 分钟 12 秒
-
(已锁定)
Sign a customer up for your loyalty program2 分钟 45 秒
-
(已锁定)
Update a customer's personal information2 分钟 44 秒
-
(已锁定)
Remove information from the database2 分钟 58 秒
-
(已锁定)
Log customer responses to an invitation3 分钟 3 秒
-
(已锁定)
Look up reservations2 分钟 34 秒
-
(已锁定)
Take a reservation2 分钟
-
(已锁定)
Take a delivery order2 分钟 36 秒
-
(已锁定)
Track your customer's favorite dishes2 分钟 44 秒
-
(已锁定)
Prepare a report of your top customers3 分钟 32 秒
-
-