Not sure I'm following you but perhaps these two tables. This way you can associate any number of subcategories with the appropriate category. And mulitiple categories can share the same subcategory if needed.use tempdbgocreate table [category] (categoryid int primary key clustered ,categoryDesc varchar(50))gocreate table [subCategory] (categoryid int references category(categoryid) ,subCategoryDesc varchar(50) ,primary key clustered (categoryid, subCategoryDesc))godrop table subCategorydrop table Category
Be One with the OptimizerTG