The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
"Join multiple CSV"
Suppose 3 CSV-files:
Events
But how to join them if I have more than 2 CSV. The Join-operator can only by used to join 2 files.
This is the result I want:
Events
id,event,day_id,city_idWeekdays
1,work,1,2
2,work,2,3
3,theatre,2,1
4,work,3,2
5,work,4,1
6,work,5,3
7,trip,6,3
8,sport,7,1
9,relax,7,2
id,dayCities
1,monday
2,tuesday
3,wednesday
4,thursday
5,friday
6,saturday,
7,sunday
id,cityThanks to http://rapid-i.com/rapidforum/index.php/topic,9301.0.html I now know, how to join 2 CSVs in order to get the labels of another CSV instead of their IDs.
1,paris
2,london
3,rome
But how to join them if I have more than 2 CSV. The Join-operator can only by used to join 2 files.
This is the result I want:
1, work, monday, london
2, work, tuesday, rome
3, theatre, tuesday, paris
0
Answers
Scott