I have some trouble converting some specifications to sql tables :
The scenario is as follow :
an employee (there is already an EMPLOYEE table) can have one or several lists of employees, and an employee can belong to one or more of these lists.
Example : employee_1 has 2 lists, list_1_1 and list_1_2.
list_1_1 holds employee_2, employee_3 and employee_4.
list_1_2 holds employee_3 and employee_5.
employee_1 can in turn belong to a list of another employee.
I first thought of a table with these columns :
list_name;owner_id;employee_id
but then, what would the primary key of that table be ? I am sure there is a better way to achieve this, but I'm stuck.