you could try this Append Query. I would think about whether it is meaningful to duplicate the complete data.
INSERT INTO P_Table ( Pnum, Pname, Pcity )
SELECT
IP.IPnum
, IP.IPname
, IP.IPcity
FROM
(SELECT
IP.IPnum
, IP.IPname
, IP.IPcity
FROM IP_Table AS IP
INNER JOIN...