insert into asso_product_category_picture (product_category_id, name, suffix, url)
values (#{productCategoryId}, #{name}, #{suffix}, #{url})
insert into asso_product_category_picture (product_category_id, name, suffix, url)
values
(#{n.productCategoryId}, #{n.name}, #{n.suffix}, #{n.url})
delete
from asso_product_category_picture
where product_category_id = #{productCategoryId}
delete
from asso_product_category_picture
where id in (
#{n}
)