码迷,mamicode.com
首页 > 数据库 > 详细

有重复行,查询时只保留最新一行的sql

时间:2017-09-27 14:52:00      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:查询   rom   col   ges   partition   art   esc   div   style   

一、表结构如下:表名test

技术分享

二、sql

select temp.*
  from (select test.*,
               row_number() over(partition by obd_code order by odd desc) rm
          from test) temp
 where temp.rm = 1;

 

有重复行,查询时只保留最新一行的sql

标签:查询   rom   col   ges   partition   art   esc   div   style   

原文地址:http://www.cnblogs.com/lanceblog/p/7601678.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!