Is there a table in which these identifiers exist? So you can join him?
SELECT source.ID, status.value FROM source LEFT JOIN status ON status.id = source.id WHERE source.ID in (100, 101,102,103,104,105);
If not, you need to create a temporary table or an inline table (with these values ββin it). Then you can simply join this table to your data.
EDIT
An example of an embedded table. There are several ways to do this, this is just one.
SELECT source.ID, status.value FROM ( SELECT 100 AS id UNION ALL SELECT 101 AS id UNION ALL SELECT 102 AS id UNION ALL SELECT 103 AS id UNION ALL SELECT 104 AS id UNION ALL SELECT 105 AS id ) AS source LEFT JOIN status ON status.id = source.id
source share