you seriously do not want to do it that way, you're asking for a world of hurt
you need a third table ...
Code:
CREATE TABLE product_producttypes
( product_id INTEGER NOT NULL
, product_type_id INTEGER NOT NULL
, PRIMARY KEY ( product_id, product_type_id )
);
INSERT INTO product_producttypes VALUES
( 427 , 1 )
,( 427 , 3 )
,( 427 , 4 )
,( 428 , 2 )
,( 429 , 1 )
,( 429 , 3 )
one row per product per product_type
and then remove the product_type_id column from the products table
