Sometimes, you will find that you have obtained recordsets that are not exactly what you need. This recipe shows various ways of combining them.
Combining recordsets
Getting ready
To use this recipe, you need to have two or more recordsets for the same model.
How to do it...
Here's the way to achieve common operations on recordsets:
- To merge two recordsets into one while preserving their order, use the following operation:
result = recordset1 + recordset2
- To merge two recordsets into one while ensuring that there are no duplicates in the result, use the following...