I have a MySQL table called employees. There\'s another table called shifts that is tied to employees by the employeeId colum
employees
shifts
employeeId
Yes but not with a single insert.
You'd have one INSERT to do the employee, then a second INSERT with a sub-SELECT to SELECT all of the shift data.
Here are some examples