View Single Post
Old 01-28-2008, 04:43 PM   #4 (permalink)
ReSpawN
The Frequenter
 
ReSpawN's Avatar
 
Join Date: Nov 2007
Location: Netherlands
Posts: 460
Thanks: 49
ReSpawN is on a distinguished road
Default

As an addition to Bill's post, I can advice you to create a property table as well. It's a sort of category table but then using only the number and the name for display.

You'll have a design like this:

Code:
-- Item ID database
item_id     item_property_id
int(15)     int(15)

-- Property Database
property_id    property_name     property_value
int(15)        varchar(255)      varchar(255)
Linking both databases, you would only retrieve the info you wanted, when you want to. Not the complete database with all your information. It's the way that suits me best at the moment, but it might be a little bit exaggerated.

I think Salathe - the guru - will be better at this than me but who cares. My point of view.
__________________
"Life is a bitch, take that bitch on a ride"
Send a message via MSN to ReSpawN
ReSpawN is offline  
Reply With Quote
The Following User Says Thank You to ReSpawN For This Useful Post:
DeMo (01-29-2008)