gpt4 book ai didi

php - 选择性地从 MySQL 中删除 moSTLy 重复记录

转载 作者:可可西里 更新时间:2023-11-01 06:40:02 24 4
gpt4 key购买 nike

我有一张 table :

PRICE_UPDATE
id (int 5, auto-increment, primary, unique)
part_number (varchar 10, non-null)
price (float(10,2), non-null)

一些 part_number 是重复的(1 个或多个重复记录)。有时价格相同,有时价格不同。

我如何删除所有基于 part_number 的重复行,留下最高价格或如果价格都相同则只留下 1 条记录?

这在直接 MySQL 中是否可行?

最佳答案

DELETE t1
FROM YourTable t1, YourTable t2
WHERE t1.part_number = t2.part_number
AND (t1.price, t1.id) < (t2.price, t2.id)

关于php - 选择性地从 MySQL 中删除 moSTLy 重复记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8913917/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com