Guys,The following works, but seems like overkill to me. Am I missing some simple left join setup??declare @xref table (GroupID int, ItemID int)insert into @xref select 1, 1 union select 1, 2 union select 1, 3 union select 2, 4 union select 2, 5 declare @in table (GroupID int, ItemID int)insert into @in select 1, 3 union select 2, 1 union select 2, 5 -- For GroupID = 1 should return ItemIDs (1, 2)-- for GroupID = 2 should return ItemIDs (4)select distinct d.*from ( select * from @xref except select * from @in )djoin @in i on d.GroupID = i.GroupID-- desired results:GroupID ItemID----------- -----------1 11 22 4