What is the syntax to join 2 recordsets? Listed below are the recordsets that I am working with and now I would like to join them. Any insight would be appreciated. FYI, I did do a search on joining recordsets in VB, but I didn't come accross anything......Thanks again.
Dim rs1 As DAO.Recordset
Dim rs2 As DAO.Recordset
DoCmd.SetWarnings True
Set rs1 = CurrentDb.OpenRecordset("SELECT * FROM temptbl")
Set rs2 = CurrentDb.OpenRecordset("SELECT * FROM temptbl2")
Set rs1 = Nothing
Set rs2 = Nothing
DoCmd.SetWarnings True
Dim rs1 As DAO.Recordset
Dim rs2 As DAO.Recordset
DoCmd.SetWarnings True
Set rs1 = CurrentDb.OpenRecordset("SELECT * FROM temptbl")
Set rs2 = CurrentDb.OpenRecordset("SELECT * FROM temptbl2")
Set rs1 = Nothing
Set rs2 = Nothing
DoCmd.SetWarnings True