Basically I have a export from an old system with timesheets in it.
Each line to simplify it has an employee name, description and time.
I have thousands of these in excel rows of timesheets in excel. I want to pop these into two tables
Employee and Timesheet
Naturally the employee name would repeat many times but I want to have unique employees only in the employee table e.g. 30 employees but 10,000 timesheets
This is a one off task, I've PHP at my disposal if need but I recon there is probably a smart easy way to do this.
I have a few ideas of my own but I'd be interested to know what way you would do this.
Note: there is actually alot more complexity in the amount of tables but by solving the above example effectively it solves it for the more complex example where clients, projects, tasks, etc are all included in each row.