Re: database design of products catalogue

From: Tino Wildenhain <tino(at)wildenhain(dot)de>
To: Terence Ng <ngterry2000(at)yahoo(dot)com(dot)hk>, pgsql-general(at)postgresql(dot)org
Subject: Re: database design of products catalogue
Date: 2003-07-21 12:40:37
Message-ID: 3F1BDF45.8020403@wildenhain.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hi,

Terence Ng wrote:
> Hi!
>
> I would like to create a database for products
> catalogue. I have many products with different
> specification.
>
> e.g.
> lamp A: Part no, Color, Raw Material, Wave length,
> Vf(V)20mA, lv(ucd)10mA
>
> ECG:Part no, Type, Iv, KHz, A, W, Im
>
> Should I put these products in one table, or in
> separate?

Several posibilities. One I'd give a go
would be
one table for products and their common data

products (products_id int8, description text, ...);

attributenames (attr_id int4, importance int2, attrname text (or
attrname int4 pointing to translation table)
,unit_id)

attributeunits (unit_id int4, unitname text, baseunit_id int4, factor
numeric)

attributes (product_id int8, attr_id int4, unit_id int4, attrtxt text,
attrvalue numeric)

I think you get the picture :-)

Good luck
Tino Wildenhain

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Ron Johnson 2003-07-21 13:01:50 Re: database design of products catalogue
Previous Message Terence Ng 2003-07-21 12:04:29 database design of products catalogue