zoukankan      html  css  js  c++  java
  • SQL Server 数据库查找重复记录的几种方法

    http://www.hanyu123.cn/html/c61/6790.html

    一、查某一列(或多列)的重复值。(只可以查出重复记录的值,不能查出整个记录的信息)

    例如:查找stuid,stuname重复的记录:

    1. select stuidstuname from stuinfo
    2. group by stuidstuname
    3. having(count(*))>1

    二、查某一列有重复值的记录。(此方法查出的是所有重复的记录,如果有两条记录重复的,就查出两条)

    例如:查找stuid重复的记录:

    1. select * from stuinfo
    2. where stuid in (
    3. select stuid from stuinfo
    4. group by stuid
    5. having(count(*))>1
    6. )

    三、查某一列有重复值的记录。(只显示多余的记录,也就是说如果有三条记录重复的,就显示两条)

    前提:需有一个不重复的列,此示例为recno。例如:查找stuid重复的记录:

    1. select * from stuinfo s1
    2. where recno not in (
    3. select max(recno) from stuinfo s2
    4. where s1.stuid=s2.stuid
    111111
  • 相关阅读:
    添加右键菜单
    闭包和迭代器
    函数的进阶
    函数入门
    文件操作
    深浅拷贝
    小数据池和再谈编码
    字典
    list tuple
    int bool str
  • 原文地址:https://www.cnblogs.com/whl4835349/p/5889770.html
Copyright © 2011-2022 走看看