If an employee can work for only one department and a department can have many employees (one to many relationship). Which answer the relationship table "work" that has the best values to describe the relationship between employee and department? The employee table has two columns (eid, name) with records ('E1','A'), ('E2','B'), ('E3','C'). The department table has two columns (did, name) with records ('D1','X'), ('D2','Y'), ('D3', 'Z'). O work(eid, did) with values (E1','D1'), ('E1','D2'), ('E2, 'D2'). work(eid, did) with values (E1','D1'), ('E2','D2'), ('E3, 'D2'). O work(eid, did) with values (E1','D1'), ('E2', 'D2'), ('E2,D3'). work(eid, did) with values ('E1','D1'), ('E2','D2'), ('E3,'D3').

icon
Related questions
Question
If an employee can work for only one department and a department can have many employees (one to many relationship). Which answer the relationship table "work" that has the best
values to describe the relationship between employee and department?
The employee table has two columns (eid, name) with records ('E1','A'), ('E2','B'), ('E3','C').
The department table has two columns (did, name) with records ('D1','X'), ('D2','Y'), ('D3', 'Z').
work(eid, did) with values ('E1','D1'), ('E1','D2'), ('E2,'D2').
work(eid, did) with values ('E1','D1'), ('E2','D2'), ('E3,'D2').
work(eid, did) with values ('E1','D1'), ('E2','D2'), ('E2,'D3').
work(eid, did) with values ('E1','D1'), ('E2','D2'), ('E3,'D3').
Transcribed Image Text:If an employee can work for only one department and a department can have many employees (one to many relationship). Which answer the relationship table "work" that has the best values to describe the relationship between employee and department? The employee table has two columns (eid, name) with records ('E1','A'), ('E2','B'), ('E3','C'). The department table has two columns (did, name) with records ('D1','X'), ('D2','Y'), ('D3', 'Z'). work(eid, did) with values ('E1','D1'), ('E1','D2'), ('E2,'D2'). work(eid, did) with values ('E1','D1'), ('E2','D2'), ('E3,'D2'). work(eid, did) with values ('E1','D1'), ('E2','D2'), ('E2,'D3'). work(eid, did) with values ('E1','D1'), ('E2','D2'), ('E3,'D3').
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps

Blurred answer
Similar questions