Тёмный

Database Design for a Food Delivery App (Example & Walkthrough) 

Database Star
Подписаться 62 тыс.
Просмотров 31 тыс.
50% 1

Опубликовано:

 

15 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 48   
@arbazadam3407
@arbazadam3407 Год назад
Hello Ben. I encourage you to create more videos on designing databases for applications. We can easily pick syntax from the documentation but when the need to design the databases arises. Thats where we struggle.
@DatabaseStar
@DatabaseStar Год назад
Hey! Thanks for the suggestion, that’s a good idea. Are there any domains or systems that you would like to see a database design created for? I’ve got a few on my list but want to see if there are any you’d like to see.
@chethanb6406
@chethanb6406 Год назад
Quora
@VaibhavKarbhajan
@VaibhavKarbhajan 9 месяцев назад
Very simple and good design ! The design can be extended to add more things such as currency for instance.
@DatabaseStar
@DatabaseStar 9 месяцев назад
Thanks! Yes that’s a good point, it can be.
@jayjoshi1366
@jayjoshi1366 9 месяцев назад
Great video and content displayed. Can you specify which database can be used for Food Delivery apps and websites like Doordash or Uber eats, and how can the DB be queried if any customer searches specific restaurant or any food item universally which may go to any restaurant ? Your response will be appreciated.
@DatabaseStar
@DatabaseStar 9 месяцев назад
Thanks! You can use any relational database for this concept such as MySQL or Postgres or SQL Server. You would write Select queries to get the data you need from the tables.
@mickeymittal-j1b
@mickeymittal-j1b 24 дня назад
Thank you for the wonderful video! For the task of adding ingredients, I was able to create a list of available ingredients for a specific menu item by setting up an ingredients table. Since the relationship between menu items and ingredients is many-to-many, I also created a junction table that stores the IDs of both the menu items and the ingredients. However, I'm unsure how to store the ingredients that a user selects in the order_menu_item table. Could you please guide me on how to approach this?
@DatabaseStar
@DatabaseStar 24 дня назад
Glad you like the video! I assume that a user can make multiple ingredient changes for an item, so I think there would be a joining table (for example, named "item_modifications") between order_menu_item and the new joining table for menu_item_ingredients. In this table you could store the changes the user makes to a menu item for each order. I think this would work but not certain. You could create these tables (or add them in a spreadsheet) and test that it works.
@irshadahmed6801
@irshadahmed6801 Год назад
Great video!!. What about having reviews in a separate table. Because we might have index reviews based on just resturant or delivery driver
@DatabaseStar
@DatabaseStar Год назад
Yes, you could have reviews in a separate table, if you wanted to review just the restaurant or just the delivery driver.
@hanhthien2948
@hanhthien2948 5 месяцев назад
Hello sir, I have a question, why not combine the customer table and delivery_driver table in one table? I see they have the same row, why not just combine and have a column named 'role' in the user table?
@DatabaseStar
@DatabaseStar 5 месяцев назад
Good question. Essentially it’s because they are different things. But if they share enough of the same details and you want to have a single profile with different roles then yes that could work.
@theroadbacktonature
@theroadbacktonature Год назад
Great Video, thank you. Curious, why do we need two separate tables - order_menu_item and food_order, can we not merge them together into single table?
@DatabaseStar
@DatabaseStar Год назад
You're wleocme! The reason for two separate tables is because the food_order represents the whole order that was place: a reference to the restaurant, who placed the order, when it was placed, and so on. The order_menu_item is a list of all of the items included in the order, because there can be many. For example, a food_order from McDonald's could contain an order_menu_item of 1 cheeseburger, and another order_menu_item for 1 large fries.
@coastalcruise1345
@coastalcruise1345 Год назад
Hey Ben, very helpful video thanks. Regarding the order_menu_item table, could we use a composite primary key from its two foreign keys: order_id and menu_item_id ?
@DatabaseStar
@DatabaseStar Год назад
Hey, yes you could use that for the primary key instead.
@thuongngo8010
@thuongngo8010 11 месяцев назад
you are really good teacher , hope u make more video like this
@DatabaseStar
@DatabaseStar 11 месяцев назад
Thanks!
@MohammadLsk
@MohammadLsk Год назад
Awesome , can you design database for a travel agency and reservation app
@DatabaseStar
@DatabaseStar Год назад
Great idea! I'll create a video in the future.
@nicholassmith6412
@nicholassmith6412 Год назад
Love your videos as an SQL newbie! Quick question: for requirement 5, why can’t the food_order table just have an order_status column rather than have a separate order_status table?
@DatabaseStar
@DatabaseStar Год назад
Thanks! Good question. The reason is that there is a specific list of statuses that are allowed. For example, "Ordered", "In Progress", "Out for Delivery", "Delivered". These are stored in the separate order_status table so that there is consistent data for the orders. The alternative would be having an order_status column in the food_order table. This could work, however there is a chance of different values appearing. You could have a value of "Ordered", or "ordered", or "order placed" or "Done", or anything else that doesn't match the defined list. This makes the data hard to work with. You could put a check constraint on the column, but there are different issues with that (e.g. harder to make changes). Hope that answers your question.
@nicholassmith6412
@nicholassmith6412 Год назад
@@DatabaseStar that's the exact answer I was looking for - makes sense, thank you!
@hyderoxxx
@hyderoxxx Год назад
@@DatabaseStar thank you for the amazing video, I really appreciate it! Regarding the status question, what do you think about using an ENUM type in the food_order table for the status? It would restrict the possible values to a specified list. It would probably make it more error prone to compare status values between tables though. It is a topic that comes up often during my work and it would be helpful to see what you think.
@oracle_professor
@oracle_professor Год назад
Really helpful for my students
@DatabaseStar
@DatabaseStar Год назад
Glad to hear it!
@0xmahabub07
@0xmahabub07 Год назад
can you plz make a video on train ticket online reservation system Where trains can have different different routes and common too. Also how can I calculate the point to point price calculation Assuming the railway all routes as a undirected graph edges 😢
@DatabaseStar
@DatabaseStar Год назад
Good idea! I can create a video on this kind of design.
@0xmahabub07
@0xmahabub07 Год назад
@@DatabaseStar 💚 waiting 🙂
@puBo-ik9uw
@puBo-ik9uw Год назад
Hello, I would like to ask if you want to add a column called totalprice (including the total price of the order and delivery fee), where should it be added? And how to use the syntax to achieve the purpose of calculating the price? follow the syntax is how I try, but I can't insert into the totalPrice Successfully SELECT SUM(order_item.ORD_ITEM_QTY*menu_item.MENU_ITEM_PRICE) as total FROM order_item INNER JOIN menu_item ON menu_item.MENU_ITEM_ID = order_item.MENU_ITEM_ID GROUP BY ORD_ID; This has bothered me for a long time and I can't figure it out Thank you in advance
@DatabaseStar
@DatabaseStar Год назад
Hi, good question. I believe the column "totalamount" in the food_order table would do this. What error are you getting with that query?
@razhirsangasary
@razhirsangasary 8 месяцев назад
what happens if the customer update address after place order?
@DatabaseStar
@DatabaseStar 8 месяцев назад
Good question. I think the app would have to handle that, and perhaps we need some kind of history associated with the order.
@mr.adamprince4853
@mr.adamprince4853 6 месяцев назад
what application to make the table relation? thanks
@DatabaseStar
@DatabaseStar 6 месяцев назад
I used a program called LucidChart
@mr.adamprince4853
@mr.adamprince4853 6 месяцев назад
@@DatabaseStar thank you
@rohith7929
@rohith7929 6 месяцев назад
Can i assume order_menu_item table similar to cart
@DatabaseStar
@DatabaseStar 6 месяцев назад
Yeah that’s right, it’s a similar concept.
@fnoodes
@fnoodes 5 месяцев назад
can I have a code for this example?
@DatabaseStar
@DatabaseStar 5 месяцев назад
I haven't created SQL code this example.
@trishulcurtis1810
@trishulcurtis1810 8 месяцев назад
Excellent Video!
@DatabaseStar
@DatabaseStar 8 месяцев назад
Thanks!
@-.-smile
@-.-smile Год назад
Amazing videos!
@DatabaseStar
@DatabaseStar Год назад
Thanks!
@IamDoQtorNo
@IamDoQtorNo 11 месяцев назад
Great videos/content. Your deliveries are SPOT ON, to include your following on comments from your subs. I want to setup a mysql server box off site from client for replication. Do you have a video about those setup?
@DatabaseStar
@DatabaseStar 11 месяцев назад
Thanks, I'm glad you like it! I don't have a video on that setup, unfortunately.
Далее
7 Database Design Mistakes to Avoid (With Solutions)
11:29
ROBLOX TRAND AGAIN. Part 7☠️🗿🙋🏻‍♀️
00:16
ITZY "GOLD" M/V
03:20
Просмотров 6 млн
How to Build a Food Delivery App Like Uber Eats 🍕
22:07
eCommerce Database Design: Diagram & Explanation
16:06
Просмотров 144 тыс.
How to Design a Database
10:57
Просмотров 63 тыс.
Viral Video of a Man's Crazy Job Interview
16:02
Просмотров 1,3 млн
From idea to Database design
38:56
Просмотров 18 тыс.
DoorDash & The Myth of Profitable Food Delivery
26:46