7 Database Design Mistakes to Avoid (With Solutions)

Поделиться
HTML-код
  • Опубликовано: 18 июн 2024
  • 📝 Get my free SQL Cheat Sheets: www.databasestar.com/get-sql-...
    🎓 Learn how to design an effective database and create it using SQL: databasestar.mykajabi.com/edd...
    Designing a database is an important part of implementing a feature or creating a new application (assuming you need to store data).
    There are many different ways data can be stored. There are some limitations put in by the database, but there are a lot of different techniques that can still be used.
    This can mean there are some design concepts that are used that I believe should be avoided.
    I’ve listed these “database design mistakes” in this video. I’ve explained what they are, why it’s not a good idea to use them, and what the solution should be instead.
    Some of them you may disagree with, and some of them you may have seen in live production systems that work well. That’s OK. This video explains the reasons why it’s not usually a good idea and what the alternatives are.
    Timestamps:
    00:00 Intro
    00:25 Mistake 1 - business field as primary key
    02:18 Mistake 2 - storing redundant data
    03:24 Mistake 3 - spaces or quotes in table names
    04:49 Mistake 4 - poor or no referential integrity
    06:11 Mistake 5 - multiple pieces of information in a single field
    07:30 Mistake 6 - storing optional types of data in different columns
    09:04 Mistake 7 - using the wrong data types and sizes
  • НаукаНаука

Комментарии • 102

  • @mariaferguson2224
    @mariaferguson2224 Год назад +9

    They are all great tips. A good one to remember was Mistake 6. Storing optional types of data in different columns. Thank you for the information!!

  • @mostinho7
    @mostinho7 Год назад +20

    Done Thanks for making these keep it up!
    Mistakes to avoid when designing db:
    1. Use a separate field as primary key (not a business relevant field or a field that you already have as an attribute because that might change, or not be unique). You can still enforce constraints on other fields such as making them unique without using them as pk
    2. Don’t store redundant data (store date of birth only instead of age and date of birth) and calculate the age from dates
    3. Maintain referential integrity by implementing constraints (primary key, foreign key, unique, not null, check)
    4. Optional columns should be moved to another table (for example customer phones, home phone, work phone etc) should be moved out of the customer table and into a customer_phone table which references customer id and then stores different phones for each customer with different phone types. Phone typed can have their own table and then the customer_phone can reference the phone_type_id

    • @DatabaseStar
      @DatabaseStar  Год назад

      Thanks!

    • @ziad9533
      @ziad9533 Год назад +2

      You should also add #5, which is about choosing the correct datatype for the data. For example date in 'datetime' instead of text, and name in 'varchar(200)' instead of 'varchar(2000)'.

  • @houstonvanhoy2198
    @houstonvanhoy2198 Год назад +4

    Nicely done! I remember learning these principles years ago when I read Ralph Kimball's books on data warehousing. They still ring true - the books and the principles. ✅

    • @DatabaseStar
      @DatabaseStar  Год назад

      Thanks! I’ve read one of those books and yeah it’s still quite valid

  • @samfreitag729
    @samfreitag729 Год назад +2

    I think number one is brilliant! I have seen many changes over my life, like phone numbers getting longer, so it's really an intelligent approach in my opinion. Thank you for another great video!

    • @DatabaseStar
      @DatabaseStar  Год назад

      Thanks for the comment, glad you liked the video!

  • @arnotek
    @arnotek Год назад +11

    I have been doing database designs for many years - your information is spot on. Thank you for putting this out.

  • @nicholassmith6412
    @nicholassmith6412 Год назад

    Very useful info, thanks! Especially the tip about optional columns 👍

  • @hindy51
    @hindy51 Год назад

    This is a very informative and high quality channel! Thank you!

  • @sql3051
    @sql3051 2 года назад

    Thank you, The video was very informative especially your example on how to store multiple phone numbers.

    • @DatabaseStar
      @DatabaseStar  2 года назад

      Thanks, I’m glad you liked it!

  • @lysol64
    @lysol64 2 года назад

    Awesome video and full of so much useful information. Thanks for sharing this 👏👍

  • @samibouakeldev
    @samibouakeldev Год назад

    Every second of this video is worth it, I learned a lot 🙏🙏

  • @mosesnandi
    @mosesnandi 2 года назад +1

    This was amazing. Databases are also amazing and powerful tools!

  • @anonymousstrong1768
    @anonymousstrong1768 Год назад

    Thank you so much for this informative presentation. I am a DNP student, totally new to information technology. My professor sent us the link. These videos are making my class whole lot interesting. I do not hate the course anymore. Thanks to your videos.

    • @DatabaseStar
      @DatabaseStar  Год назад

      Thanks for the comment and glad you like the video! Good to hear you don't hate the course anymore! Do you have any other questions or issues on databases, that I could make videos about?

  • @helersu
    @helersu 3 месяца назад +1

    Thank you for the good information. I can say that information number 6 was very useful for me. 😀

  • @amlife180
    @amlife180 2 года назад

    Thank you. That was very informative and useful

  • @tashi7160
    @tashi7160 6 месяцев назад

    Great insights. Thank you. #6 might have few issues, specially when you doing search and now you have join so many tables. I think it comes under EAV pattern, which has many issue like complex queries, performance, limited indexing etc. for me complex query was issue when you try to build a query for search with many filters.

    • @DatabaseStar
      @DatabaseStar  6 месяцев назад

      Good points! I'm glad you like the video.

  • @martinnhantran
    @martinnhantran Год назад

    Fantastic video, I learnt alot. Thanks

  • @dennistucker1153
    @dennistucker1153 Год назад

    Excellent video. Thank you.

  • @HossinAzmoud
    @HossinAzmoud Год назад

    Thanks. these videos are so useful

  • @appstuff6565
    @appstuff6565 Год назад

    Love you for this, thank you.

  • @idk5598
    @idk5598 Год назад

    can't thank you enough mister .. i really appreciate it 😞❤

  • @juniorlukusa9650
    @juniorlukusa9650 2 месяца назад

    Thanks for sharing all of these mistakes

  • @mannycalavera121
    @mannycalavera121 Год назад

    Great video, thanks for making it

  • @tulntizarak6069
    @tulntizarak6069 Год назад

    Best Channel on RUclips, new subscriber, keep going 😍

  • @appstuff6565
    @appstuff6565 Год назад

    and all tips were equally helpful!

  • @fernandoherranz4095
    @fernandoherranz4095 5 месяцев назад

    Great video thank you! As for storing phone numbers, you make good points but I don't want to worry about several tables storing all these different numbers. I would likely design it so either a customer/client table has 4-5 options for phone numbers and accept the possible blanks where they show up, or make 1 phone number table with 6+ options for numbers and a notes field for any additional instructions. If you're scaling up and dealing with thousands of phone numbers (like within a large company or org) then your method would likely be better.

    • @DatabaseStar
      @DatabaseStar  5 месяцев назад

      Thanks! That's a good point, and it's good you've made a conscious decision about your preferred approach and are happy with the impacts.

  • @abiolasamuel8092
    @abiolasamuel8092 6 месяцев назад +3

    I'm guilty of step 6; always trying to use columns instead of creating new tables.

    • @DatabaseStar
      @DatabaseStar  6 месяцев назад

      Yeah it’s a good one to remember!

  • @deyvidwilliam
    @deyvidwilliam Год назад

    Very good video! 👏👏👏

  • @bushido5206
    @bushido5206 2 года назад

    Could you please make a video on how someone might do an entry level ETL project?
    Or perhaps if you could offer any insight here.
    Let us assume that someone "knows" enough SQL and Python to move forward into data engineering, how would this person develop an interesting entry level ETL pipeline project to put on their resume/portfolio?
    What are the necessary tools at a fundamental level? I know for batch processing I could use something like Apache Airflow.. but that is about it.
    I really want to start an ETL project but there are surprisingly not that many clear resources on that topic as of yet.
    Thanks for the videos.

    • @DatabaseStar
      @DatabaseStar  2 года назад +1

      Good question. I haven't looked into ETL projects but I can do a video on that soon.

  • @rafacancode
    @rafacancode Год назад

    HI, great video, quick question. Why #6 you create 3 tables to solve the problem? why not simply have a phone number table and customer table and one of the columns in the phone table can be the type instead of having a separate table just for the type? isn;t the type table not necessary? I would like to hear your thoughts

    • @DatabaseStar
      @DatabaseStar  Год назад +1

      Good question! You could do it in 2 tables: one for customer, and one for phone number. You could have a type column in the phone number table that would accept the values you want, such as "Mobile", "Work", "Home", "Work Mobile".
      However, if there is a defined list, the only way to ensure that the right values can be selected here would be to add a Check Constraint to the column, and then if you're designing an application to edit this data, you would need to define the list in the user interface.
      If it's a defined list like this, I usually suggest creating a separate table with the possible values (phone_type in this example). This way you can use the FK relationship to ensure the values are only in the list, and can edit the list easily.

  • @Raph0ne
    @Raph0ne Месяц назад

    Thanks for your Wonderful Video of sharing Expertise! As a newbie I'm planning a database but not sure how to reflect the age problem (#2) in Design.. bonus question: how to achieve it in Diagram that for example I take a variable from a config File to do my query? Like if I say calculate the Due date that always is constant (but based on Config Variable x=2 Years)
    How to draw the diagram for this Matter?
    Thank you

    • @DatabaseStar
      @DatabaseStar  Месяц назад +1

      Glad it was helpful!
      I think it depends on if you have the config value in your database or in a separate file.
      If it's in a separate file, you can read this value when you perform the Update or Insert statement.
      If it's in the database, you would also have to consider that when you Insert or Update the value.
      I think the design would be the same - your Due Date would be in the table for your record.

  • @FlutterMapp
    @FlutterMapp Год назад

    Great!

  • @CitAllHearItAll
    @CitAllHearItAll Год назад

    Age can be set as a non-persistent calculated column. Then it's value is populated at run-time. But that's more of a data warehouse thing than 3NF design.

  • @Hacking-Kitten
    @Hacking-Kitten 11 месяцев назад

    Redudant Data vs. Query Performance
    let's say you would have to a bunch of joins in order to retrieve the data. Is storing the value redundantly a solution in this case?

    • @DatabaseStar
      @DatabaseStar  11 месяцев назад

      Yeah that is an option. But having joins isn't necessarily a performance issue. If the tables are small, and if indexes are added, then the query can still perform well.

  • @AjaniTea
    @AjaniTea 3 месяца назад +1

    At 9:00, how do we handle the case where the customer may have multiple phone types and we want to store all of them?
    From the diagram shown, I’m under the impression that the customer table contains their customer_id, which allows us to look up the phone_number and phone_type_id in the customer_phone_number table.
    But imagine we want to add a business_number as well, doesn’t “phone_type_id” make it so that there is only 1 type of number associated with that customer_id?
    Or are we saying the primary key is the phone number and the customer id is a foreign key?
    Some clarification here would help. Thanks!

    • @DatabaseStar
      @DatabaseStar  3 месяца назад

      The customer_phone_number table will allow you to have multiple rows for a single customer, so you can store a phone number for the "business" phone_type_id as well as the "personal" phone_type_id.
      You could also have two records for the same customer and same phone_type_id, which means two business phone numbers for the same customer. There's no primary key on this design, and no unique constraint on the columns.
      You could (and I probably should have) add a primary key column to this table, something like customer_phone_number_id, but this won't prevent a customer having two phone numbers of the same type.
      If you want to prevent that, you can add a unique constraint (or a PK) on the (customer_id, phone_type_id) columns.

  • @markoviitanen4441
    @markoviitanen4441 Год назад

    Can you LATER change varchar(200) into varchar(300) in your API code and database, but still keeping the stored old variables in database, without wiping them when you make the change in length?

    • @DatabaseStar
      @DatabaseStar  Год назад +1

      Yes, you can do this. You can run an Alter Table statement to increase the size of a column and the data should be preserved.

  • @iordanistsapanidis4021
    @iordanistsapanidis4021 9 месяцев назад

    DB structure for a city guide? includes product orders and room booking

    • @DatabaseStar
      @DatabaseStar  9 месяцев назад

      What do you mean by a city guide?

  • @superboba2007
    @superboba2007 Год назад

    I love this channel

  • @mariemartin3071
    @mariemartin3071 Год назад

    Which soft ware tool do I use to create a Data Base design

    • @DatabaseStar
      @DatabaseStar  Год назад

      I use LucidChart but you can use many different tools. I've got a list on my post here: www.databasestar.com/data-modeling-tools/

  • @naranyala_dev
    @naranyala_dev Год назад

    thank you

  • @abdiag603
    @abdiag603 2 года назад

    What if you make the primary key as an auto incrementing code number that’s an integer and controlled by another key that’s unique

    • @DatabaseStar
      @DatabaseStar  2 года назад

      Making the primary key an auto generating number is a good idea and pretty common. What do you mean by controlled by another?

    • @abdiag603
      @abdiag603 2 года назад

      @@DatabaseStar example. For Invoice Table you set a default primary key of invoice_id that is autoincrementing and then set an invoice_code that is also autoincremented as the primary key is autoincremented.
      Id 1 invoice_code 125001
      Id 2 invoice_code 125002
      ....e.tc

  • @chadgregory9037
    @chadgregory9037 2 года назад

    I thought names with spaces had to be in brackets? or is that only alias names that have spaces?

    • @DatabaseStar
      @DatabaseStar  2 года назад

      Yeah names with spaces need to be in brackets or single quotes, off the top of my head it may depend on the database, but the concept is the same.

    • @chadgregory9037
      @chadgregory9037 2 года назад

      @@DatabaseStar oh ok, I'm still new. Thanks for the reply!

  • @carlosfuentes5538
    @carlosfuentes5538 4 месяца назад

    Genius!

  • @chadgregory9037
    @chadgregory9037 2 года назад

    I came for database tidbits... I stayed for the soothing accent =]

  • @user-sn4nb3ei8p
    @user-sn4nb3ei8p Месяц назад

    good video

  • @zintuplet
    @zintuplet Год назад

    Doesn't #6 move you to a snowflake design?

    • @DatabaseStar
      @DatabaseStar  Год назад

      Yes, it would be a more snowflake design or data warehouse design. This would work for that, but maybe not for a transactional database.

  • @chadgregory9037
    @chadgregory9037 2 года назад

    so number 6 is basically making a proper join table rather than having a messy ass many to many ?

  • @AdvocateChamber
    @AdvocateChamber 2 года назад

    It is very sorry that there us only 4 comments in 13 years fir such a informative video presentation.

    • @DatabaseStar
      @DatabaseStar  2 года назад +2

      Glad you like it! But the video is not 13 years old, it’s only a few weeks old.

  • @Gamuss12345
    @Gamuss12345 3 месяца назад

    Im curious! What kind of accent/dialect is this?

    • @DatabaseStar
      @DatabaseStar  3 месяца назад +1

      I’m from Australia so it’s an Australian accent!

  • @rpeetz
    @rpeetz 10 месяцев назад +2

    About the phone number, you don’t usually care about too many phones about someone, unless you’re designing a database for a phonebook, usually two fields on the customer for phone more than suffice, make your queries simpler(no joins needed) and with a slightly better performance(that explain can tell you over thousands of records), so putting as dismembering the phone number as multiple tables, as a globally good advice you’re potentially adding unneeded complexity.
    When you’re modeling a database you need to know the requirements.
    A generally true good advice is KISS(Keep it Simple Stupid)

    • @DatabaseStar
      @DatabaseStar  10 месяцев назад

      That's a good point. However the reason to have a separate phone number is because you can often have multiple phone numbers for a person, and they can have different types (mobile, work mobile, work, home, business, etc). It's not a good design to just have phone1 and phone2 because you don't know what type they are and you're restricted to 2 phoen numbers.
      Having a lookup table for phone number shouldn't slow down performance, as it won't be a large table, and with indexes the lookups will be quick.

    • @brdrnda3805
      @brdrnda3805 7 месяцев назад

      @@DatabaseStar I once worked for a company how did a CRM for pharma sales reps and was following in the "keep it simple" path with several fields. You'll end up with four or five fields for phone numbers and still run into situations where it's not enough. They finally re-did the phone number in a more normalized way and things got just simpler.