I am torn in between two ways of structuring my database for processing orders. I am not sure if one way will be faster than another. If they are going to be equal then it probably should not matter, right?

Here is option #1.

orders
-------
id
timestamp
userID
cartID
reviewed
approved
reviewBy
reviewTimestamp
reviewDetails
processed
processedBy
processedTimestamp
processedDetails

Option #2:

orders
-------
id
timestamp
userID
cartID
reviewID
processID


reviews
-------
id
timestamp
status
reviewerID
details


processing
----------
id
timestamp
processorID
details

Thanks guys!

link|improve this question

79% accept rate
feedback

3 Answers

up vote 3 down vote accepted

I would look not only at speed but also at functionality. Who cares if it is fast if it limits you too much to be useful. For example, what if you want to review an order twice (the first time you reject something maybe)? Or what if you process the order in two parts? Unless there is a business case why you really will never have multiples of any of these, I would suggest your second option.

Also, don't forget the reverse could be true as well. For example, one person might process three orders at once. Or they might approve three orders at once. Maybe these aren't happening now, but you need to evaluate the future. Make sure your database model works for you and your use cases.

Finally, when in doubt, I usually opt for the extensible model. I rarely come across a time when I kick myself for having a database structure that is too normalized (I don't go overboard) but I've come across a number of models that have frustrated me to no end because they are unworkable with the (now changed) use cases they are supposed to support.

As far as speed goes, the more you have joins, the slower it will go. However, we aren't talking about massive speed issues unless your database is incredibly large. Do your indexes properly and you most likely will never notice the difference.

link|improve this answer
You just gave me the best answer possible! I will be accepting your answer. However, what exactly do you mean by proper indexes? – Flipper Jun 5 '11 at 1:27
1  
@Flipper - When you build your tables, make sure to assign a primary key to each one (probably your id field in each). Then when you create foreign key field to link up to the primary keys, make sure they are indexed. Also, index any field that you will be using in a WHERE clause of a search statement. Don't go crazy and index everything but make sure you have at least your PK/FK fields indexed in order to make these joins work well. – BiggsTRC Jun 5 '11 at 1:31
Ok so all of my tables have an id field that is a primary key and set to auto increment in all of them. Then like for instance in the table orders, reviewID would correspond to the id of the entry in the reviews table. Is this what you mean? – Flipper Jun 5 '11 at 1:38
1  
@Flipper - That is correct. reviewID should then be indexed. – BiggsTRC Jun 5 '11 at 1:58
feedback

I would got with multiple tables, the difference in performance will be negligible, as long as you create the proper indexes.

link|improve this answer
So then what would be the advantage of multiple? – Flipper Jun 5 '11 at 1:18
feedback

I would go with a normalized model. If reviews and processing are many to one with orders, go with option 2. If reviews and processing are one to one with orders, option 1 may be easier to work with for both reading and writing data (ex. one insert vs three).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.