I am creating a new SQL Server 2008 database. I have two related tables.
The first table looks like this:
BRANDS // table name BrandID // pk BrandName // varchar
The second table looks like this:
MODELS // table name ModelID // pk ModelDescription // varchar
Each brand will have at least one model, and each model will belong to only one brand.
The question is should I create a connection table such as
BRANDS_MODELS
Or do I need to modify the MODELS table to include a BrandID like this
MODELS // table name BrandID // ModelID // pk ModelDescription // varchar
Thanks!
source share