I have a table.
Inside my table each rows can be a "company" or "an employee".
My table looks something like this (look at the column "RowType"):
Employees b,c,d belongs to the company a
Employees f,g,h,i belongs to the company e
I need to split my table in several text files so that each file contains maximum 100 employees. Additional difficulty: I cannot "split" into two different files some employees from the same company How do i do that?
Inside my table each rows can be a "company" or "an employee".
My table looks something like this (look at the column "RowType"):
Employees b,c,d belongs to the company a
Employees f,g,h,i belongs to the company e
I need to split my table in several text files so that each file contains maximum 100 employees. Additional difficulty: I cannot "split" into two different files some employees from the same company How do i do that?