I dont think that there is something called as ENUM in the SQL ServerFor the Round about solution you can create the looktable and using join retrive the values from that table. Something like this Create Table TblLookup(Code Varchar(200),Description Varchar(8000))Insert tblLookup Select 'StateAccomplished', '3018A87A-1468-4FE1-8B70-996963BB0C43'Union all Select 'StateAsked','96A52B7F-DADF-4C93-B6B0-05E3359B86BE'-- Then your query SELECT tblProcess.* FROM tblProcess Inner join(Select Description From TblLookup Where Code = 'StateAccomplished') as f On f.Description = TblProcess.Status
Chirag