I'd like to understand the best way to restrict items in a query. For example Query1 returns a list of ID's based of specific detail filters. I would like Query2 to return only items where Query2.ID is the same as Query1.ID.
Which Query2 Detail Filter is better? And why?
- Query2.ID IN ( Query1.ID )
- Query2.ID = Query1.ID
Note: Using an "=" filter requires Query2's "Cross product allowed" property to be set to "Allow".