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.

I have been trying to find out if the data-type enum exists in SQL Server 2008 like the one you have in MySQL.

share|improve this question

5 Answers

up vote 21 down vote accepted

It doesn't. There's a vague equivalent:

mycol VARCHAR(10) NOT NULL CHECK (mycol IN('Useful', 'Useless', 'Unknown'))
share|improve this answer
it's hardly equivalent at all – Pacerier Jul 6 '11 at 3:23
7  
@Pacerier: Well, I said vague. – chaos Jul 6 '11 at 5:15
@chaos: Why isn't there a proper equivalent? How do people working with SQL Server get along without such data type? – claws Apr 19 '12 at 17:02
1  
@claws: 1) I dunno, man, ask Microsoft. 2) They do weird things like the above, or use foreign keys into a table of the possible values. – chaos Apr 19 '12 at 22:45

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.

share|improve this answer
A better solution from a maintainability perspective than the check constraint shown above. – HLGEM Jun 21 '12 at 13:59
2  
This is a better solution than Enums - in MySQL as well. – ypercube Jun 28 '12 at 9:29

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.

share|improve this answer
CREATE FUNCTION ActionState_Preassigned()
RETURNS tinyint
AS
BEGIN
    RETURN 0
END

GO

CREATE FUNCTION ActionState_Unassigned()
RETURNS tinyint
AS
BEGIN
    RETURN 1
END

-- etc...

Where performance matters, still use the hard values.

share|improve this answer

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!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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