U kunt WHERE .. IN
. gebruiken zoals dit:
WHERE XType IN ('P','D') -- checks whether the Xtype is P or D
Die overigens wordt uitgebreid tot OR:
WHERE (XType = 'P' OR Xtype = 'D')
Als je wilt controleren of die kolom records bevat voor zowel 'P' als 'D', dan kun je een EXISTS &subquery gebruiken:
WHERE EXISTS (SELECT 1 FROM TableName WHERE Xtype = 'P')
AND EXISTS (SELECT 1 FROM TableName WHERE Xtype = 'D')