En supposant que vous ayez une table liée appelée ThingNames où il y a deux colonnes, id et ThingName, vous pouvez le faire
SELECT thing_id
FROM thing
LEFT JOIN ThingNames on thing.thing_type_id = ThingName.id
WHERE ThingNames.ThingName IN ('OPENED', 'ONHOLD')
(N'oubliez pas les guillemets autour des ThingNames entre parenthèses.