INSERT INTO catalog_product_entity (
entity_type_id,
attribute_set_id,
type_id,
sku,
has_options,
required_options,
created_at,
updated_at
) VALUES (
(select eav.entity_type_id from eav_entity_type eav where eav.entity_type_code = 'catalog_product'),

(select eav.default_attribute_set_id from eav_entity_type eav where eav.entity_type_code = 'catalog_product'),
'simple',
'<@SSTOCKCODE@>',
0,
0,
now(),
now()
);
