How to do it...

Here's the way to achieve common operations on recordsets:

  1. To merge two recordsets into one while preserving their order, use the following operation:
result = recordset1 + recordset2 
  1. To merge two recordsets into one while ensuring that there are no duplicates in the result, use the following operation:
result = recordset1 | recordset2 
  1. To find the records that are common to two recordsets, use the following operation:
result = recordset1 & recordset2
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.191.253.62