I assume you need to do this because this query takes a while to run?
To initially create the table:
Select IZPN,CMDESC,USRN34
INTO newtable
from AS400.S102BAFE.AADAT10.DE100M
Where USRN34 <> 0;
Add or set the primary key on the table using the table designer in SSMS.
Now that the table is created, use:
truncate table newtable;
INSERT newtable (IZPN,CMDESC,USRN34)