I have the following table structure of my db:
tbl_project
tbl_employee
tbl_deliverable
- user_to_deliverable
as tbl_prjct and tbl_deliverable has 1-many relation, tbl_employee and tbl_deliverable have many-many relation so they are splited into user_to_deliverable table
All i want is that a query to show project_name(from tbl_project), project's deliverables (from tbl_deliverable) and emloyee name to which that specific deliverable is assigned to.
Can i get help with this?