I have the following select that need to be done:
select top 1 a, b, c, d from Products where
CodDep = 10 or
CodDep = 11 or
CodDep = 12 or CodDep = 13 or
CodDep = 26 or
CodDep = 27 or CodDep = 32 or
CodDep = 34 or
CodDep = 248442 or
CodDep = 259741 order by LastUpdate
Is there an easy way to do this without all this repetition?