sql – 仅基于表的一列消除重复值
发布时间:2020-12-12 16:38:50 所属栏目:MsSql教程 来源:网络整理
导读:我的查询: SELECT sites.siteName,sites.siteIP,history.dateFROM sites INNER JOIN history ON sites.siteName = history.siteNameORDER BY siteName,date 第一部分输出: 如何删除siteName列中的重复项?我只想根据日期栏留下更新的. 在上面的示例输出中,
我的查询:
SELECT sites.siteName,sites.siteIP,history.date FROM sites INNER JOIN history ON sites.siteName = history.siteName ORDER BY siteName,date 第一部分输出: 如何删除siteName列中的重复项?我只想根据日期栏留下更新的. 在上面的示例输出中,我需要行1,3,6,10 解决方法这是窗口函数row_number()派上用场的地方:SELECT s.siteName,s.siteIP,h.date FROM sites s INNER JOIN (select h.*,row_number() over (partition by siteName order by date desc) as seqnum from history h ) h ON s.siteName = h.siteName and seqnum = 1 ORDER BY s.siteName,h.date (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |