Welcome to the dBforums forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions, articles and access our other FREE features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload your own photos and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact support.

If you prefer not to see double-underlined words and corresponding ads, place your cursor
here for ContentLink opt out.

Go Back  dBforums > Database Server Software > MySQL > Design Dilemma - Rows or Columns ??

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 09-17-04, 00:05
heals1ic heals1ic is offline
Registered User
 
Join Date: Sep 2004
Posts: 2
Design Dilemma - Rows or Columns ??

Here is my design dilemma:

I have a table that contains products for each supplier.

| supplierid | prodid | price_each | price_case |

This means that for every new supplier I add, I have to add records for all the products available to this table. I intend to have around 10 suppliers and probably around 500 products, so around 5000 records for option 1.

The other option is to have this table structure:

| productid | Supplier1_price_each | Supplier1_price_case | Supplier2_price_each | Supplier2_price_case | Supplier........ and so on till nth supplier.

This means 500 products but 2 columns for each supplier.

Which is better for both performance and design?

The first option has more overheads that have to be covered in my php code to produce the extra rows to accommadate the new supplier as it is added.

The second option only requires me to add 2 columns every time a new supplier is added.

Not sure which option is best.

Last edited by heals1ic : 09-17-04 at 03:37.
Reply With Quote
  #2 (permalink)  
Old 09-17-04, 06:18
r937 r937 is offline
SQL Consultant
 
Join Date: Apr 2002
Location: Toronto, Canada
Posts: 13,553
please do not post the same question in multiple forums

http://www.dbforums.com/t1022844.html
__________________
r937.com | rudy.ca

pre-order my book Simply SQL from Amazon
Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On