We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

How can I union in this stage (Choose Table or Specify Query Window)

ryanzhang487
8 - Asteroid

Hi community,

I have around 10 tables in this step that I want to choose, and they all have same column, is there a way to union in this stage? or do I need to 'input data' first for each table and then union later?

Thanks

Screenshot 2023-02-02 160435.png

1 REPLY 1
Luke_C
17 - Castor
17 - Castor

Hi @ryanzhang487 

 

Click the plus button in the top right for however many tables you need. Then click into each 'Q' and add one table each. This should write the query with the union syntax (below in case you want to just do it in the editor)

Luke_C_0-1675375287404.png

SELECT column_name(s) FROM table1
UNION
SELECT column_name(s) FROM table2;

 

 

Labels
Top Solution Authors