views:

866

answers:

2

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

+9  A: 

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

mycol VARCHAR(10) NOT NULL CHECK (mycol IN('Useful', 'Useless', 'Unknown'))
chaos