zoukankan      html  css  js  c++  java
  • SQL查询语句去除重复行

    1.存在两条完全相同的纪录

    这是最简单的一种情况,用关键字distinct就可以去掉

    select distinct * from table(表名) where (条件)

    2.存在部分字段相同的纪录(有主键id即唯一键)

    如果是这种情况的话用distinct是过滤不了的,这就要用到主键id的唯一性特点及group by分组

    select * from table where id in (select min(id) from table group by [去除重复的字段名列表,....])

    [取重复的第一行]

    或者

    select * from table where id in (select max(id) from table group by [去除重复的字段名列表,....])

    [取重复的最后一行]

    3.没有唯一键ID

    select identity(int,1,1) as id,* into newtable(临时表) from table

    select * from newtable where id in (select min(id) from newtable group by [去除重复的字段名列表,....])

    drop table newtable

    扩展:

    1、identity(int,1,1) ——从1开始,每次递增1

    2、SELECT INTO 语句 —— SELECT * INTO new_table_name [IN externaldatabase] FROM old_tablename

     ------------------------------------------------------------------------------------------------------

    引自:

    sql查询语句去除重复列(行)【http://blog.knowsky.com/234240.htm】

  • 相关阅读:
    Entropy
    MonkeyEatsPeach
    python中使用可选参数
    java中二元数组的构建
    静态语言和动态语言
    开胃菜
    python 工具箱
    python处理多层嵌套列表
    小球落体
    LoadRunner:Error 27796
  • 原文地址:https://www.cnblogs.com/xjnotxj/p/5266305.html
Copyright © 2011-2022 走看看