WHERE IN is a very useful and commonly used feature of SQL, it looks like this -
SELECT * FROM ORDER WHERE OrderId IN (10248, 10249, 10250, 10251)
The will return up to four rows of data, showing just the orders that have an OrderId in the list you passed to the select statement.