May 8, 2002 #1 Dbless IS-IT--Management Joined May 8, 2002 Messages 22 Location US I have two queries that I want to combine all the data from one into the other. Is this possible? The reason for two queries is a one to many relationship with totals.
I have two queries that I want to combine all the data from one into the other. Is this possible? The reason for two queries is a one to many relationship with totals.
May 8, 2002 #2 JoJ Programmer Joined May 3, 2002 Messages 71 Location CA If both queries have the same field structure, you can use a UNION query to combine both recordsets. In design mode, choose SQL from the view menu. Then type an SQL string that looks like this: SELECT * FROM Query1 UNION SELECT * FROM Query2; Upvote 0 Downvote
If both queries have the same field structure, you can use a UNION query to combine both recordsets. In design mode, choose SQL from the view menu. Then type an SQL string that looks like this: SELECT * FROM Query1 UNION SELECT * FROM Query2;