I'm wondering what would be the best and most efficient way for storing simple data in the database. For example, say I have a column in my table called status with values such as complete, incomplete, won't complete, etc. Should I just store these values as is in the database?

Or should I store the values as 0, 1, 2 and have a php function like get_status to convert the number to the words?

Or should I store the values as 0, 1, 2, etc. and have another table that holds the string values, although this would require you to join to this table every time you need to know the value.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

An enum column will work just fine.

http://dev.mysql.com/doc/refman/5.0/en/enum.html

link|improve this answer
Great, that's good to know, looks like this is more underused! – Joker Dec 12 '10 at 18:31
feedback

You could consider an enum type. An enum is a defined list of possible string values, e.g:

create table stuff (status enum ("foo", "bar") not null);
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.