V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
MySQL 5.5 Community Server
MySQL 5.6 Community Server
Percona Configuration Wizard
XtraBackup 搭建主从复制
Great Sites on MySQL
Percona
MySQL Performance Blog
Severalnines
推荐管理工具
Sequel Pro
phpMyAdmin
推荐书目
MySQL Cookbook
MySQL 相关项目
MariaDB
Drizzle
参考文档
http://mysql-python.sourceforge.net/MySQLdb.html
uti6770werty
V2EX  ›  MySQL

求一句 MySQL SQL 语句,表内指定字段重复的条目,以 UpdateTime 字段排序,只保留最新一条。。。

  •  
  •   uti6770werty · Aug 31, 2020 · 2548 views
    This topic created in 2079 days ago, the information mentioned may be changed or developed.

    表名:rejectgoods 判断字段:name,size,city,address UpdateTime 是 datetime 类型
    表内所有条目,根据判断字段都相同的条目,如果存在>1 条,只保留 UpdateTime 最新的条目,其它删除。。。

    5 replies    2020-09-01 09:32:45 +08:00
    kiracyan
        1
    kiracyan  
       Aug 31, 2020   ❤️ 1
    select rid from rejectgoods t1
    exists (select 1 from rejectgoods where t1. name = t2.name ..... and t1.address = t2. address and t1.updatetime < t2.updatetime )

    把查出来的 rid 删了
    LGA1150
        2
    LGA1150  
       Aug 31, 2020 via Android   ❤️ 1
    DELETE a
    FROM rejectgoods a, rejectgoods b
    WHERE a.name = b.name
    AND a.size = b.size
    AND ... (其他字段省略)
    ...
    AND a.UpdateTime < b.UpdateTime

    这样 UpdateTime 较小的就被删除
    uti6770werty
        3
    uti6770werty  
    OP
       Aug 31, 2020
    @kiracyan
    @LGA1150
    感谢两位,字段名称是英文的测试没问题,但是中文的字段名不行,
    尽管已经试过格式修改,因为不是很了解 MySQL,临急抱佛脚也不是很懂
    WHERE t1.`城市` = t2.`城市`
    WHERE a.城市 = b.城市的句式,


    1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE a.城市 = b.城市
    gavindexu
        4
    gavindexu  
       Sep 1, 2020 via iPhone
    给中文的字段名前后加上“`”就可以了啊
    muskill
        5
    muskill  
       Sep 1, 2020
    @LGA1150 直接 delete 不好吧😳
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   3325 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 40ms · UTC 12:47 · PVG 20:47 · LAX 05:47 · JFK 08:47
    ♥ Do have faith in what you're doing.