I have been trying to find out if the data-type enum
exists in SQL Server 2008 like the one you have in MySQL.
views:
866answers:
2
+9
A:
It doesn't. There's a vague equivalent:
mycol VARCHAR(10) NOT NULL CHECK (mycol IN('Useful', 'Useless', 'Unknown'))
chaos
2009-09-16 17:19:25