I have a column of IDs stored as numbers, which I can filter for one at a time using the standard operators. Is it possible to filter for a list of multiple IDs in one go?
For example, select every record where the ID is in 1234,4567,8910… etc
simila...