Category Archive for "Database Design"

Is storing a delimited list in a database column really that bad?

If you have ever worked with databases, you may have come across the scenario where you need to store multiple values in a single column. One common approach is to store these valu...

How to Represent Inheritance in a Database

In object-oriented programming, inheritance allows us to define a class based on another class. This concept is useful when we want to represent a family of objects with shared att...