Multi-file support #92
robot-accomplice
started this conversation in
Ideas
Replies: 1 comment
-
|
You can do this already (using
Then you can use > csvq -f csv 'select t1.*,t2.phone from `test1.csv` t1 join `test2.csv` t2 on t1.id=t2.id'
id,first_name,last_name,email,phone
1,Louis,Washington,,1234567890
1,Louis,Washington,,2345678901
2,Sean,Burton,sean@example.com,3456789012or with > csvq -f csv 'select t1.*,t2.phone from `test1.csv` t1 left join `test2.csv` t2 on t1.id=t2.id'
id,first_name,last_name,email,phone
1,Louis,Washington,,1234567890
1,Louis,Washington,,2345678901
2,Sean,Burton,sean@example.com,3456789012
3,Peter,Smith,peter@example.com, |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Have you considered implementing multi-file support? I have a use case that would benefit from the ability to create a result set that is the product of "joining" two or more CSVs.
Beta Was this translation helpful? Give feedback.
All reactions