vote up 1 vote down star

My requirement

A table needs to maintain a status column.

This column represents one of 5 states.

initial design

I figured I can just make it an integer column and represent the states using a numeric value.

  • 0 = start
  • 1 = running
  • 2 = crashed
  • 3 = paused
  • 4 = stopped

Since I don't want my app to maintain the mapping from the integers to their string description, I plan to place those in a separate state description table (relying on a FK relation).

Then I discovered that mysql has an ENUM type which matches my requirement exactly. Other than a direct dependency on mysql, are there any pitfalls with using the ENUM type ?

flag

The ENUM data type starts counting with 1, not with 0 as you indicated. – Tomalak Dec 12 '08 at 6:46
see: dev.mysql.com/doc/refman/5.0/en/enum.html – Tomalak Dec 12 '08 at 6:47
ok thanks Tomalak – ashitaka Dec 12 '08 at 9:24

4 Answers

vote up 3 vote down check
  • Changing the set of values in an ENUM requires an ALTER TABLE which causes a table restructure -- an incredibly expensive operation. Changing the set of values in a lookup table is as simple as INSERT or DELETE.

  • There's no way to associate other attributes with the values in an ENUM, like which ones are retired, and which ones are eligible to be put in a drop-down list in your user interface. However, a lookup table can include additional columns for such attributes.

  • It's very difficult to query an ENUM to get a list of distinct values, basically requiring you to query the data type definition from INFORMATION_SCHEMA, and parsing the list out of the BLOB returned. You could try SELECT DISTINCT status from your table, but that only gets status values currently in use, which might not be all values in the ENUM. However, if you keep values in a lookup table, it's easy to query, sort, etc.

I'm not a big fan of ENUM, as you can tell. :-)

The same applies to CHECK constraints that simply compare a column to a fixed set of values. Though MySQL doesn't support CHECK constraints anyway.

link|flag
Thanks Bill for your tips. Sometimes abstractions like the ENUM type may look simple and elegant but is an administrative timebomb. – ashitaka Dec 12 '08 at 7:05
Oh I forgot one: ENUM isn't standard SQL and AFAIK no other brand of database supports it. So it limits your portability if you use it. – Bill Karwin Dec 12 '08 at 7:07
vote up 0 vote down

A table would be easier to internationalize. But so would a class outside the database entirely. Enums seem to me to be a solution in search of a problem - or what you use when all you know is databases.

link|flag
vote up 0 vote down

Here is article about speed comparison of enum. Maybe it gives some hints. IMHO it shoue be limited to a use in fixed list of strings ("Yes/No", "Child/Adult") that with 99% probability doesn't change in the future.

link|flag
vote up 0 vote down

Agreed, enums in mysql are just bad. Use tinyint instead !

link|flag

Your Answer

Get an OpenID
or

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