cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X

I have 3 infotables, How to join infotables one after another as new infotable.

AP_10343008
12-Amethyst

I have 3 infotables, How to join infotables one after another as new infotable.

I have 3 infotables, How to join infotables one after another as new infotable.

1 ACCEPTED SOLUTION

Accepted Solutions

 

There are two OOTB code snippets or infotable functions that you could use.
You can find them in the Code Snippets InfoTableFunctions.

Method 1: If your infotables are based on the same datashape (or have the same fields) :

You can use the Union function to join two infotables with the same fields.

ThorstenMueller_1-1697462315545.png

 

Method 2: If your infotables have different fields and you want to join them like in SQL.

You can use the Intersect function.

ThorstenMueller_0-1697462281221.png

The same functions can also be found in the Javadoc, if you want to create your service in Java rather than in the composer.
Either way, you have to do 2 unions or 2 intersects. First to "combine" the first two infotables. The second command to join your 3rd infotable with the result of the first command.

View solution in original post

1 REPLY 1

 

There are two OOTB code snippets or infotable functions that you could use.
You can find them in the Code Snippets InfoTableFunctions.

Method 1: If your infotables are based on the same datashape (or have the same fields) :

You can use the Union function to join two infotables with the same fields.

ThorstenMueller_1-1697462315545.png

 

Method 2: If your infotables have different fields and you want to join them like in SQL.

You can use the Intersect function.

ThorstenMueller_0-1697462281221.png

The same functions can also be found in the Javadoc, if you want to create your service in Java rather than in the composer.
Either way, you have to do 2 unions or 2 intersects. First to "combine" the first two infotables. The second command to join your 3rd infotable with the result of the first command.

Top Tags