I have been trying to find out if the data-type enum exists in SQL Server 2008 like the one you have in MySQL.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
||||
|
|
|
It doesn't. There's a vague equivalent:
|
|||||||||||||
|
|
The best solution I've found in this is to create a lookup table with the possible values as a primary key, and create a foreign key to the lookup table. |
|||
|
for 3 bits of data 2^3 which can be stored in less than 1 byte of data it does not make sense to declare varchar of 10 for each item in the database. A streamlined approach would be to include a numerical tinyint (2^8) implementation with a flag based enumeration type setup in code. |
|||
|
|
Where performance matters, still use the hard values. |
||||
|
|
|
IMHO Lookup tables is the way to go, with referential integrity. But only if you avoid "Evil Magic Numbers" by following an example such as this one: Generate enum from a database lookup table using T4 Have Fun! |
|||
|
|