泛型List去除重复指定字段】的更多相关文章

泛型List去除重复指定字段ID var list=listTemp.Distinct(new IDComparer ()).ToList(); 重写比较的方法: public class IDComparer : IEqualityComparer<T> { public bool Equals(T x, T  y) { if (x == null) return y == null; return x.ID == y.ID; } public int GetHashCode(T obj)…
居然已经有人写了 那我就直接复制其链接吧…
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 [去除重复的字段名列表,....])…
1.存在两条完全相同的纪录   这是最简单的一种情况,用关键字distinct就可以去掉   例子: select distinct * from table(表名) where (条件)   2.存在部分字段相同的纪录(有主键id即唯一键)   如果是这种情况的话用distinct是过滤不了的,这就要用到主键id的唯一性特点及group by分组   例子:select * from table where id in (select max(id) from table group by […
PersonInfo类: public class PersonInfo { public int Index; public string Name; public override string ToString() { return string.Format("Index:{0}, Name:{1}", Index, Name); } } PersonInfoCompareByName比较类: public class PersonInfoCompareByName : IEq…
首先,我们定义一个Student类来测试. public class Student { public int ID { get; set; } public string Name { get; set; } public int Age { get; set; } } List<Student> data = new List<Student> { ,Name=}, ,Name=}, ,Name=}, ,Name=}, ,Name=}, ,Name=} }; 在这样一个数据中.…
就是获取DataTable中某一列的值,因为从数据库中检索数据时,按照2个字段进行分组,而要获得的那一列刚好在分组这两列中,所以该列的值必然有重复,于是就想到了去除重复,有了思路以后在网上看了一些方法,大都是遍历之类的,虽说功能是可以实现,但是效率太低了,最后发现了一个简单的方法,如下: 1 2 3 4 5 6 7 8 9 10 11 public string[] GetNamesFromDataTable(DataTable dataTable)         {             …
重复记录 有两个意义,一是完全重复的记录,也即所有字段均重复的记录 二是部分关键字段重复的记录,比如Name字段重复,而其他字段不一定重复或都重复可以忽略. 1.对于第一种重复,比较容易解决,使用 select distinct * from tableName 就可以得到无重复记录的结果集. 如果该表需要删除重复的记录(重复记录保留1条),可以按以下方法删除 select distinct * into #Tmp from tableName drop table tableName sele…
培训考试项目中,需要实现考试成绩排名:排名参考项为分数(score降序).参加日期(attendtime升序).第几次参加考试(frequency升序):并且,每个用户只保留一条数据(pid). 考试结果存储表格如下: 期望得到的结果为: 解决思路: 去重: 考虑到dintinct针对单个字段比较有效,结合其他字段使用时,效果不理想: 嵌套语句先进行排名,再去除重复的pid数据行:尝试半天没写出来:请教同学,由他给出下一条方案 使用临时表,分语句查询:先排名为temp1表,后在temp1表中删除…
关键词:DISTINCT 1.比如数据库一组数据查询如下,返回店铺下所有的区域id 2.SQL统计返回指定字段 district 不重复的 记录id,SQL如下 SELECT DISTINCT(district ) FROM `t_life_shop` 查询结果如下 3.TP5.1的写法如下 $list = $this->where($where)->distinct(true)->field('district')->select();…