I have a table of employees, the employees can work in many different location. So I have a one to many relationship (I think). Now should I have table like so:
Employees Table
employee_id | location_id | etc | etc
Or should I create another table like so:
Blah Table
location_id | employee_id
In the Blah Table one location could have many employees. So what should I do? Blah Table or keep the Employees Table that I already have.
Oh, and I also have a location table:
Location Table
location_id | address | state | etc | etc
Any help would be appreciated, thank you.