SQL - Table Relationships
Consider an ER diagram with entities
Employee(emp_id, name), Project(proj_id, title), and a many-to-many relationship WorksOn between them. How should you map this relationship into tables?