I am trying to think of the best way to join data from two separate csv files together.
I want to pull data form both where the first column matches, "mark" and "mark" from the examples below. Files will be under 3 megs in size, should I just slurp, should I use sqlite?
Thanks,
Mark
file1.csv
mark,35
jen,36
bob,40
judy,37
file2.csv
mark,male
jen,female
judy,female
result
mark,35,male
jen,36,female
judy,37,female
Start Free Trial