How can I add two tables

Hi,

 

I have two tables say

Table1

                 Col1   Col2   Col3

Row1        A         B          P

Row2        A         B          Q

 

Table2

                 Col1   Col2   Col3

Row1        A         B          X

Row2        A         B          Y

 

Required Output

                 Col1   Col2   Col3

Row1        A         B          P

Row2        A         B          Q

Row3        A         B          X

Row4        A         B          Y

 

How can I do this?

Thanks

With the Concatenate node

Thanks Iris.

That's what I'm looking for.