Results 1 to 2 of 2
  1. #1
    Join Date
    Jan 2011
    Posts
    33
    Plugin Contributions
    0

    Default Attribute Price Batch Update

    There are closed threads here on this.
    They end 2009 as far as I can determine and do not reach this level.

    I can use:


    UPDATE products_attributes SET options_values_price = 1.0000 where options_id = 2 AND options_values_id = 3 AND options_values_price = 5.0000;

    to change size price surcharges site wide.

    But I wish to limit the changes to a product category.

    The master_categories_id I need is in the products table.

    How are the two tables links to create an update like:

    UPDATE products_attributes
    SET options_values_price = 1.0000
    where
    options_id = 2 AND options_values_id = 3 AND options_values_price = 5.0000

    ...

    where master_categories_id = 10;

  2. #2
    Join Date
    Jan 2011
    Posts
    33
    Plugin Contributions
    0

    Default Re: Attribute Price Batch Update

    Try this:


    UPDATE products_attributes
    LEFT JOIN products
    ON products_attributes.products_id = products.products_id
    SET options_values_price = '3.0000'
    WHERE (products_attributes.options_id = 'X' AND products_attributes.options_values_id = 'YY' AND products_attributes.options_values_price = '5.0000')
    AND (products.master_categories_id = 'ZZZ');

 

 

Similar Threads

  1. v139h Update price by attribute of products already in the shopping cart
    By rschrader in forum General Questions
    Replies: 1
    Last Post: 8 Aug 2012, 02:18 PM
  2. Update of price when attribute selected
    By artcoder in forum Setting Up Categories, Products, Attributes
    Replies: 1
    Last Post: 2 Jul 2009, 01:47 PM
  3. Sorry - Cart doesn't update price for attribute?
    By miriam_t in forum Setting Up Categories, Products, Attributes
    Replies: 3
    Last Post: 6 May 2009, 08:43 PM
  4. Update price via TEXT Attribute
    By trini868 in forum Setting Up Categories, Products, Attributes
    Replies: 2
    Last Post: 13 Feb 2009, 06:21 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR