I have reports in database tables that are separated by group name. The group names exist in a separate table on a different database. They all have the same fields but with different table names like Report_Group_1, Report_Group_2, etc. The group names exist in a separate table and I want to combine them together. I want to build a SQL statement that uses union all to combine the Report tables so it would be something like
SELECT * FROM Report_Group_1 UNION ALL SELECT * From Report_Group_2
etc..
I figure that the most efficient way to do this would be to loop through each record in the [Group] table to create a string variable that is updated as it loops through each value in the [Group] table. After it iterates through every record, the string variable is executed as a query on the database. How would I do this in Alteryx? I think I would use an iterative macro to loop through each record in he [Group] table but I'm not sure how to go about building a string variable that updates as each record is iterated through.