May 8, 2002 #1 Dbless IS-IT--Management May 8, 2002 22 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 May 3, 2002 71 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;