如何从同一个表中的另一条记录更新记录?

时间:2013-07-18 04:08:14

标签: mysql

我有一个pricing表和一个用MySQL 5.1.70构建的products表。

新的定价表结构:

`priceid` int(11) NOT NULL AUTO_INCREMENT
`itemid` int(11) NOT NULL DEFAULT '0'
`class` enum('standard','wholesale') NOT NULL
`price` decimal(12,2) NOT NULL DEFAULT '0.00'
`owner` int(11) NOT NULL DEFAULT '0'

旧定价表结构:

`priceid` int(11) NOT NULL AUTO_INCREMENT
`itemid` int(11) NOT NULL DEFAULT '0'
`price` decimal(12,2) NOT NULL DEFAULT '0.00'
`owner` int(11) NOT NULL DEFAULT '0'

新产品表结构:

`itemid` int(11) NOT NULL AUTO_INCREMENT
`title` varchar(255) NOT NULL DEFAULT ''
`msrp` decimal(12,2) NOT NULL DEFAULT '0.00'

旧产品表结构:

`itemid` int(11) NOT NULL AUTO_INCREMENT
`title` varchar(255) NOT NULL DEFAULT ''
`wholesale_price` decimal(12,2) NOT NULL DEFAULT '0.00'
`msrp` decimal(12,2) NOT NULL DEFAULT '0.00'

以下是新产品表中的示例行:

'12345', 'Toy Drum', '25.00'

以下是同一项目的新定价表中的两个示例行:

'123', '12345', 'wholesale', '10.00', '2'
'124', '12345', 'standard', '20.00', '2'

我有以下查询我正在尝试使用上面的新表设置进行修改,因为旧设置在wholesale_price表中有products

UPDATE products, pricing, price_rules
SET pricing.price = IF(
    price_rules.markdown > 0,
    products.msrp - price_rules.markdown * products.msrp,
    products.wholesale_price + price_rules.markup * products.wholesale_price
) WHERE
    products.itemid = pricing.itemid AND
    pricing.owner = price_rules.owner;

复杂的是,批发价格和标准价格现在位于相同itemid但不同class下的同一表格中。

如何在新的表结构下(高效地)使这个查询工作?

表有大约200,000条记录。

1 个答案:

答案 0 :(得分:0)

首先,您需要一个真正有用的查询 - 您将在以后担心效率
查看this SQLFiddle demo,此示例显示如何将同一个表中的两行与“批发”和“标准”值组合在一起。

以下是another demo,其中包含更新查询的外观示例(查询位于构建架构选项卡的底部),以下是在对样本数据运行此更新后显示的结果。

UPDATE products, pricing new, pricing old, price_rules
SET new.price = IF(
    price_rules.markdown > 0,
    products.msrp - price_rules.markdown * products.msrp,
    products.wholesale_price + price_rules.markup * products.wholesale_price
) WHERE
    old.class = 'wholesale' AND
    new.class = 'standard' AND 
    old.itemid = new.itemid AND
    products.itemid = new.itemid AND
    new.owner = price_rules.owner;