如何使用talend获得这样的输出

时间:2017-10-23 12:55:51

标签: data-warehouse talend business-intelligence tmap

我有像dataset

这样的数据集

并且想要这样做我怎么能这样做output enter image description here 这是样本数据集

ID  COMP_ID CAR_ID  ENGINE  COLOR   CC
1   c1  car3    xyz blue    2500
2   c2  car4    xyz white   1000
3   c1  car6    xyz green   3500
4   c2  car1    xyz black   4500
5   c3  car5    xyz green   4000
6   c1  car2    xyz red 3000
7   c2  car3    xyz gray    1500
8   c3  car4    xyz silver  2000

1 个答案:

答案 0 :(得分:2)

你可以尝试一下tJavaRow:

output_row.foo=input_row.row1+"\n"+input_row.row2;

foo必须存在于输出模式中 和输入模式中的row1和row2

否则,您可以以相同的方式在TMap中连接它们。