Answer:
SELECT item.part_id, type.product_id
FROM part item JOIN part type
ON item.part_id = type.product_id;
Step-by-step explanation:
A self join is when a table joins to itself, in the above answer the part joins itself, note in bold below
FROM part item JOIN part type