recordset rows to new recordset

pb21

Registered User.
Local time
Today, 20:30
Joined
Nov 2, 2004
Messages
122
I have some sql and have created a recordset. The data needs further refining so question is how do i pass that recordset data to the new second recordset for processing within second recordset sql.

re phrase similar to creating a new query in grid and refering to a prvious query. I hope i can achieve this without saving to a table and then doing something else.

regards
peter :confused:
 
I'd refine the SQL completely before opening a recordset. You can write a query on a query, and that's where you want to refine your data access. Once you have it right, then open the recordset.
 
thanks lagbolt

good guidance and objective achieved
 
lagbolt said:
I'd refine the SQL completely before opening a recordset. You can write a query on a query, and that's where you want to refine your data access. Once you have it right, then open the recordset.

Can you give an example?
 

Users who are viewing this thread

Back
Top Bottom