Hi Folks,
I am trying to find a long list of records with [LID] as the criteria. Is there anyway to augment this query:
Code:
SELECT [maintable].LID, [maintable].Operator, [maintable].Process, [maintable].[Shift Type], [maintable].Notes, [maintable].[Time Added]
FROM [maintable]
WHERE ((([maintable].LID)=123)) OR ((([maintable].LID)=456)) OR ((([maintable].LID)=789))
To something like this:
Code:
SELECT [maintable].LID, [maintable].Operator, [maintable].Process, [maintable].[Shift Type], [maintable].Notes, [maintable].[Time Added]
FROM [maintable]
WHERE ((([maintable].LID)=
123
456
789
102
134
47
8
6
411
222
))
I am essentially looking for a more elegant/less painful way to query multiple OR Criteria?
Thanks!