Where is the table that holds the “Special Price” in Magento?

后端 未结 3 691
旧巷少年郎
旧巷少年郎 2021-01-12 00:31

Im trying to update the \"Special_price\" and \"price\" in bulk with mySQL an a php script, I know the table and row that contains the \"price\" but not the one that contain

3条回答
  •  无人共我
    2021-01-12 00:52

    Here is how to delete special price from a list of SKUs imported via a csv file into temp_import_sp_price_delete.

    delete deci from catalog_product_entity_decimal deci, 
                     `catalog_product_entity` pr,
                     temp_import_sp_price_delete temp 
    where temp.SKU= pr.SKU and pr.entity_id=deci.entity_id and deci.attribute_id=76 
    

提交回复
热议问题