T-SQL,LINQ取集合当中的重复项
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了T-SQL,LINQ取集合当中的重复项相关的知识,希望对你有一定的参考价值。
T-SQL:
select * from Articles where Title in(Select Title From Articles Group By title Having Count(*) > 1) order by title
LINQ:
from t in Articles where (from t1 in Articles group t1 by t1.Title into groupT where groupT.Count()>1 select groupT.Key).Contains(t.Title) orderby t.Title select t
以上是关于T-SQL,LINQ取集合当中的重复项的主要内容,如果未能解决你的问题,请参考以下文章