For instance I have a table (resulting from a JOIN SQL query) with 3 columns :
The first column is called "JS_namefound" : it has two rows :
orange
apple
+ column data : it has two rows :
manydata1
manydata2
+ column place : it has two rows :
usa
japan
I would like to save one row and export it with their related "JS_namefound" filename in my computer folder "C:\results\" :
orange.csv (which contains its 3 columns : orange; manydata1;usa)
apple.csv (which contains its 3 columns)
Is it possible ?
note1: I also would be pleased if it is possible to keep only one row all the time (contrarily to two rows in my above example). i.e.: once the csv file is saved, erase the current first row (so in action Helium can crawl my next url).
note2: It also would be a plus to save only one orange.csv file if for instance I have two rows in orange.csv:
orange; manydata1;usa
orange; manydata1_nextpage;empty
Thanks in advance