Hi Folks,
I am trying to find a long list of records with [LID] as the criteria. Is there anyway to augment this query:
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)) OR ((([maintable].LID)=456)) OR ((([maintable].LID)=789))
I am essentially looking for a more elegant/less painful way to query multiple OR Criteria?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 ))
Thanks!


50+ Or Criteria is there a better way?
Reply With Quote

