Tagged Questions
The distinct tag has no wiki summary.
46
votes
9answers
32k views
LINQ Select Distinct with Anonymous Types
So I have a collection of objects. The exact type isn't important. From it I want to extract all the unique pairs of a pair of particular properties, thusly:
myObjectCollection.Select(item=>new
...
45
votes
9answers
145k views
How can I SELECT rows with MAX(Column value), DISTINCT by another column in SQL?
My table is:
id home datetime player resource
---|-----|------------|--------|---------
1 | 10 | 04/03/2009 | john | 399
2 | 11 | 04/03/2009 | juliet | 244
5 | 12 | 04/03/2009 | ...
32
votes
3answers
25k views
C# Distinct on IEnumerable<T> with custom IEqualityComparer
Here's what I'm trying to do. I'm querying an XML file using LINQ to XML, which gives me an IEnumerable<T> object, where T is my "Village" class, filled with the results of this query. Some results ...
19
votes
17answers
6k views
Is there any difference between Group By and Distinct
I learned something simple about SQL the other day:
SELECT c FROM myTbl GROUP BY C
Has the same result as:
SELECT DISTINCT C FROM myTble
What I am curious of, is there anything different in the ...
18
votes
5answers
12k views
sql group by versus distinct
Why would someone use a group by versus distinct when there are no aggregations done in the query?
Also, does someone know the group by versus distinct performance considerations in MySQL and SQL ...
17
votes
4answers
10k views
LINQ Distinct operator, ignore case?
Given the following simple example:
List<string> list = new List<string>() { "One", "Two", "Three", "three", "Four", "Five" };
CaseInsensitiveComparer ignoreCaseComparer = new ...
15
votes
9answers
46k views
How to select distinct values from datatable?
How to select distinct values from datatable in C#?
For a retrieved data from database, I need to get its distinct value in C#?
15
votes
3answers
3k views
Why is there no Linq method to return distinct values by a predicate?
I want to get the distinct values in a list, but not by the standard equality comparison.
What I want to do is something like this:
return myList.Distinct( (x, y) => x.Url == y.Url );
I can't, ...
15
votes
4answers
34k views
How do you create a Distinct query in HQL
Is there a way to create a Distinct query in HQL. Either by using the "distinct" keyword or some other method. I am not sure if distinct is a valid keywork for HQL, but I am looking for the HQL ...
15
votes
6answers
8k views
Efficiently merge string arrays in .NET, keeping distinct values
I'm using .NET 3.5. I have two string arrays, which may share one or more values:
string[] list1 = new string[] { "apple", "orange", "banana" };
string[] list2 = new string[] { "banana", "pear", ...
14
votes
7answers
13k views
Linq Distinct() by name for populate a dropdown list with name and value
I'm trying to populate a Drop down list with pharmaceutical companies, like Bayer, Medley etc. And, I'm getting theses names from DB and theses names are repeated in DB, but with different id's.
I'm ...
12
votes
4answers
53k views
Using DISTINCT inner join in SQL
I have three tables, A, B, C, where A is many to one B, and B is many to one C. I'd like a list of all C's in A.
My tables are something like this: A[id, valueA, lookupB], B[id, valueB, lookupC], ...
11
votes
3answers
636 views
How to optimize a slow “select distinct” query across three tables, 40k rows, that only returns 22 results
So I have this query written by someone else that I'm trying to refactor, which pulls some features/materials for an item(shoes, generally).
There are a lot of products, and thus a whole lot of ...
9
votes
3answers
505 views
Why doesn't LINQ include a `distinct` keyword?
NOTE: Before you read on or provide an answer, I know about Enumerable.Distinct, I am asking about specific language support for that method, not about the method itself.
I've always wondered why ...
8
votes
4answers
2k views
distinct in Xpath?
I have this XML file, from which I'd like to count the number of users referenced in it. But they can appear in more than one category, and I'd like these duplicates not to be taken into account.
In ...
8
votes
5answers
15k views
Select unique or distinct values from a list in UNIX shell script
I have a ksh script that returns a long list of values, newline separated, and I want to see only the unique/distinct values. It is possible to do this?
For example, say my output is file suffixes in ...
7
votes
6answers
1k views
Returning a Distinct IQueryable with LINQ?
I'm writing a Function that pulls Records from a DataBase using LINQ to get an IQueryable. This LINQ statement will pull all of the records for Active users within a certain time period, and then spit ...
7
votes
9answers
43k views
Select distinct from multiple fields using sql
I have 5 columns corresponding to answers in a trivia game database - right, wrong1, wrong2, wrong3, wrong4
I want to return all possible answers without duplicates. I was hoping to accomplish this ...
6
votes
1answer
172 views
Huge performance difference when using group by vs distinct
I am performing some tests on a HSQLDB server with a table containing 500 000 entries. The table has no indices. There are 5000 distinct business keys. I need a list of them. Naturally I started with ...
6
votes
4answers
3k views
mysql query: SELECT DISTINCT column1, GROUP BY column2
Right now I have the following query:
SELECT name, COUNT(name), time, price, ip, SUM(price)
FROM tablename
WHERE time >= $yesterday
AND time <$today GROUP BY name
And what I'd like ...
6
votes
2answers
675 views
NHibernate: Get distinct results based on a column, but retrieve all columns
I have a table GL that contains GLCode. I need to get a list of unique GLCodes, but get all the other columns. The following SQL produces the results I want.
select * from GL where GLId in (select ...
6
votes
3answers
5k views
Distinct pair of values SQL
Consider
create table pairs ( number a, number b )
Where the data is
1,1
1,1
1,1
2,4
2,4
3,2
3,2
5,1
Etc.
What query gives me the distinct values the number column b has So I can see
1,1
...
6
votes
2answers
10k views
SQL distinct for 2 fields in a database
Can you get the distinct combination of 2 different fields in a database table? if so, can you provide the SQL example.
5
votes
2answers
81 views
PHP mysql Distinct, only load 1 set of ids
I'm trying to get data where order doesn't matter with unique ids. So simply my query would be
SELECT DISTINCT id1, id2 FROM messages ORDER BY date
If i have a database with the following data:
...
5
votes
1answer
114 views
Find distinct qualified combinations of A & B, with many-to-many A:B exclusions
With all the "distinct combination" and "Cartesian product" questions on SO, I'm sure there's a name and canonical solution for this one, but I'm not turning it up.
Update... Here's a potentially ...
5
votes
6answers
535 views
MySQL 5.5 “select distinct” is really slow
One of the things my app does a fair amount is:
select count(distinct id) from x;
with id the primary key for table x. With MySQL 5.1 (and 5.0), it looks like this:
mysql> explain SELECT ...
5
votes
2answers
858 views
why does hibernate hql distinct cause an sql distinct on left join?
I've got this test HQL:
select distinct o from Order o left join fetch o.lineItems
and it does generate an SQL distinct without an obvious reason:
select distinct order0_.id as id61_0_, ...
5
votes
3answers
325 views
coldfusion distinct list
I was wondering if there was an easy way to enforce distinct values in a coldfusion list or array.
Thanks
5
votes
3answers
478 views
select statment performance degradation when using DISTINCT with parameters
Note for bounty - START:
PARAMETERS SNIFFING (that is the only "idea" that was reported in pre-bounty questions) is not the issue here, as you can read in the "update" section at the end of the ...
5
votes
5answers
565 views
LINQ Select Distinct while ignoring the XML field
I have a complex LINQ query (using LINQ 2 EF) that can return duplicate results and I'm thus using the .Distinct() method to avoid duplicates. Here's the skeleton:
var subQuery1 = // one query...
...
5
votes
4answers
176 views
SQL query, distinct rows needed
Hey guys, I have the following table structured like this:
So basically as you can see, the department goes through name changes every couple of years. Look at number 16 for example. I want a ...
5
votes
3answers
244 views
Is my understanding of “select distinct” correct?
We recently discovered a performance problem with one of our systems and I think I have the fix but I'm not certain my understanding is correct.
In simplest form, we have a table blah into which we ...
5
votes
4answers
2k views
Select Distinct List of Words from Array with LINQ
I'm trying to get a distinct list of words from an array of words with the following code:
string words = "this is a this b";
var split = words.Split(' ');
IEnumerable<Word> distinctWords = ...
5
votes
5answers
718 views
Select Count(Distinct Value) returns 1
I'm designing a query in SSMS 2005 which looks something like this:
SELECT COUNT(DISTINCT ColumnName) FROM Table WHERE ColumnName IS NOT NULL
When I run the query with COUNT() it returns the value ...
5
votes
4answers
4k views
What is the difference between group by, distinct, Union for selecting distinct values for multiple columns?
This question explained about a way of getting distinct combination of multiple columns. But I want to know the difference between the methods of DISTINCT, UNION, GROUP BY keyword method for this ...
5
votes
2answers
2k views
Select top distinct results ordered by frequency
My table has two columns: id and name. The data looks like this:
id | name
----------
1 Jeff
2 Sam
3 Carl
4 Sam
5 Carl
6 Jeff
7 Dave
8 Jeff
What I want to obtain is this:
...
5
votes
5answers
2k views
SQL Server Server query - Count distinct DateTime field
Supposing we have the following records in an SQL Server table.
Date
19/5/2009 12:00:00 pm
19/5/2009 12:15:22 pm
20/5/2009 11:38:00 am
What is the SQL syntax for getting something like this one?
...
5
votes
2answers
11k views
Rails: How do I find() all records unique in certain fields?
I have a list of 'request' objects, each of which has fairly normal activerecord qualities. The requests table is related to the games table with a join table, 'games_requests,' so that a request has ...
5
votes
4answers
3k views
Multiple NOT distinct
I've got an MS access database and I would need to create an SQL query that allows me to select all the not distinct entries in one column while still keeping all the values.
In this case more than ...
4
votes
2answers
52 views
XSLT select unique node
this is driving me crazy, for xslt newbie like me.
Input:
<root>
<a><name>kyle</name></a>
<b><name>stan</name></b>
...
4
votes
2answers
255 views
mySQL - select unique values in two columns
I really can't find a simple or even any solution via sql to get unique data from DB (mySQL).
I will give a sample (simplified):
TABLE t
fruit | color | weight
-----------------------
apple | ...
4
votes
1answer
107 views
SELECT Individual Distinct Column in a Query with multiple Columns in Access
Background: I am creating a Query in a MS Access. My problem is that i have a Table that records the Start Time of an action, the user involved, the Item in Question and the type of transaction. For ...
4
votes
3answers
274 views
SELECT COUNT(DISTINCT [name]) from several tables
I can perform the following SQL Server selection of distinct (or non-repeating names) from a column in one table like so:
SELECT COUNT(DISTINCT [Name]) FROM [MyTable]
But what if I have more than ...
4
votes
2answers
375 views
PL/SQL SELECT with multiple COUNT(DISTINCT xxx) - unexpected results
I'm trying to put together a query for an Oracle 11g application and I've run into a problem.
I'll simplify the real scenario to make it easier to understand (and also to protect the client's data):
...
4
votes
1answer
642 views
NHibernate QueryOver distinct
I have this
scenario:
class User
{
Id,
UserName
}
class UserRelationship
{
User GroupUser,
User MemberUser
}
and query
var query = QueryOver.Of<UserRelationship>()
...
4
votes
4answers
1k views
Android's SimpleCursorAdapter with queries using DISTINCT
Here's an interesting question that I'm shocked hasn't been asked more often on the internet. Android's CursorAdapters are extremely useful once you get a ContentProvider up and running and learn how ...
4
votes
2answers
628 views
Count of distinct with linq to entities and custom IEqualityComparer
My custom comparer doesn't seem to be working. I want a count of distinct objects, but I am getting a count of 1 every time. Even though looking at the database itself clearly shows there are more 1 ...
4
votes
1answer
202 views
SQLite outer query is returning results not found in inner query
I just wondered if anyone has run into a case in SQLite (3.7.4) where a query would return one set of results, and when it becomes a subquery the results are completely different? I found the problem ...
4
votes
1answer
384 views
Linq to NHibernate Distinct() problem
I've got the following code:
var data = (from v in this.GetSession().Query<WorkCellLoadGraphData>()
where v.WorkCellId == "13"
select
...
4
votes
4answers
147 views
Remove doubles from structs array
I know 2 ways to remove doubles from an array of objects that support explicit comparing:
Using HashSet constructor and
Using LINQ's Distinct().
How to remove doubles from array of structs, ...