i have an eav table structure, special_from, special_to and special_display are not required to be filled
i'm making an sql script that populates these eav attributes for products, how my script works is that the data for these 3 values is processed and stored in a temp table, when i have all the data that's when i need to update the eav attributes
it is possible for a products to have these values so i have 2 apposes
1) DELETE
the eav values for the products i have listed in my temp table then INSERT
them
2) INSERT
the values that have not been assigned then UPDATE
the ones that have
i'm working with up to 10,000 products, so i'm wondering which is more efficient since i want to minimize the amount of time the query takes