Re: join table design question

From: "Jim C(dot) Nasby" <jnasby(at)pervasive(dot)com>
To: Peter Michaux <petermichaux(at)gmail(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: join table design question
Date: 2006-01-16 23:06:31
Message-ID: 20060116230631.GN67693@pervasive.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Sat, Jan 14, 2006 at 04:51:44PM -0700, Peter Michaux wrote:
> Option 1 - would have many join tables and each would require a class in my ORM.
>
> categories_images
> - category_id
> - image_id
>
> images_products
> - product_id
> - image_id
>
> Option 2 - have a one generic join table and only one join class
>
> image_joins
> - owner_class
> - owner_id
> - image_id
>
> In option 2 a record could be (Category, 2, 3) or (Product, 4, 1)
>
> --------
>
> Option 1 seems simpler but could lead to some repetitive code (at
> least in the data base definition).

Aside from being simpler, this option also allows you to use plain-old
RI to handle garbage collection on the many-many tables.

> Option 2 has only one join table and class. It is a little more
> complicated and I don't know how it fits
> into the normalization stuff.

This might be more or less normalized; I don't know. I do know you're
taling the difference between one of the higher forms of normalization,
afaik beyond 2NF.

And with this form you're going to need some repeated code to handle RI
anyway, which you'll now have to roll by hand.

Personally, I'd just go with option 1. If you're worried about the code
repetition you could easily create a plpgsql function that would handle
the DDL for an arbitrary table for you, so you could do:

SELECT create_image_many_many('categories');
SELECT create_image_many_many('products');
...
--
Jim C. Nasby, Sr. Engineering Consultant jnasby(at)pervasive(dot)com
Pervasive Software http://pervasive.com work: 512-231-6117
vcard: http://jim.nasby.net/pervasive.vcf cell: 512-569-9461

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Jim C. Nasby 2006-01-16 23:14:41 Re: Ref cursor with Geometric Function
Previous Message Joshua D. Drake 2006-01-16 22:35:59 Re: Plans for 8.2?