Should I implement a read database normalization (using join tables) or should I use the ENUM type for static or dynamic data?

For example:

I have a table USER with a user_status. Should I create a table a status table or I create a ENUM list with the statuses?

Thanks G

link|improve this question

feedback

3 Answers

up vote 25 down vote accepted

IMHO, the enum extension makes it much easier to embed semantics into a table and also improves efficiency by:

  1. decreasing the number of joins required for a query
  2. reducing the number of open tables in the DBMS

The only downsides I am aware of is

  1. the ENUM type is not implemented by other DBMS
  2. if you choose to add additional values to the ENUM set at a later date, you are applying a DDL update - which may take a long time with a very large table

HTH

C.

link|improve this answer
1  
Peformance test: mysqlperformanceblog.com/2008/01/24/… – ypercube Oct 27 '11 at 10:35
feedback

An other stuff to be considered...

An enum could only be updated thru a modification of the database structure elsewhere a linked table permits dynamic creation of record.

link|improve this answer
feedback

It depends on architecture and many other factors.

For example, you do not allow reading/writing data except using stored procedures. In this case you can feel free use "tinyint" datatype. If you allow reading/writing with direct queries it should be better to use constraint i.e. ENUM to avoid improper statuses (if UI or back-end can put this "wrong" status of course) .

On the other hand (and it's possible) there can be changes in data flow and maybe you will need to add new statuses. In this case you you will need: 1) do nothing if you have static datatype; 2) do alter if you have ENUM.

So... my answer is: it depends on your application and your requirements.

link|improve this answer
2  
You can enforce correct statuses by foreign key restrictions as well (using innodb tables.) – Inca Oct 27 '11 at 8:26
... and create another one table. I think that "over-normalization" (to have one additional table for each status) is not a good approach in general. – ravnur Oct 27 '11 at 8:39
Could you explain why not? There is no problem with having many tables at all. (And they do allow for extra flexibility such as adding editable descriptions to a status, or disabling one for new records while keeping it for old records.) – Inca Oct 27 '11 at 11:36
because they need "alters". It is not a problem for small table but great problem for a big ones. – ravnur Oct 27 '11 at 13:02
what do you mean by 'alters'? Creating enums require an alter statement as well, but perhaps that's not what you mean? – Inca Oct 27 '11 at 13:29
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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