My Magento Membership Question Guild Answers require me to suggest that you work on fixing API errors instead of using plain old SQL to update your database. As mentioned elsewhere, updating the database directly can lead Magento to a state not recognized by the system, which can lead to strange errors that are infuriating.
However, the special price value will be saved with other product attribute values ββin
catalog_product_entity_decimal
Table. This table has an attribute_id column, which has a foreign key relationship with the eav_attribute table. Look in the eav_attribute table for the attribute with special_price code. For this attribute_id and product entity_id should be enough to find the correct line in catalog_product_entity_decimal .
Keep in mind that no row will exist if the product does not have the special_price set. Also keep in mind that if a product has special_price installed at different visibility levels, there may be more than one line.
Alan storm
source share