how can i make a select from not normed table.
i have the table like this:

this table is not norme BNF 2.
i just want to select the NO_ID where DEPARTEMENT = something.
example:
when the input 44 then NO_ID =1
when the input 37 then NO_ID =3
when the input 13(not in table) then NO_ID = 5
of course when input = 44 it works:
SELECT [NO_ID]
FROM [T_TARIF_ZONE]
WHERE DEPARTEMENT = '44'
but how can i put in WHERE statement when the input = 37 or 13.
thanks you in advance, Stev