Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to select distinct values from datatable in C#?

For a retrieved data from database, I need to get its distinct value in C#?

share|improve this question
   
Post sample code, from a comment you made below, it seems the answer hinges on the specifics of the query you're working with. – MatthewMartin Jul 29 '09 at 12:23

13 Answers

up vote 108 down vote accepted
DataView view = new DataView(table);
DataTable distinctValues = view.ToTable(true, "Column1", "Column2" ...);
share|improve this answer
purrfeeeeeccctt – Charmie May 14 at 8:01

Following single line of code will avoid the duplicate rows of a DataTable:

dataTable.DefaultView.ToTable(true, "employeeid");

Where:

  • first parameter in ToTable() is a boolean which indicates whether you want distinct rows or not.

  • second option in the ToTable() is the column name based on which we have to select distinct rows.

The same can be done from a DataSet, by accessing a specific DataTable:

dataSet.Tables["Employee"].DefaultView.ToTable(true, "employeeid");
share|improve this answer
3  
i like this answer the most, as it points to the DefaultView property of a DataTable. – Ian Boyd Sep 6 '12 at 13:27
2  
I like it best because it explains the code used :) – Rachel Feb 1 at 13:42
DataTable dt = new DataTable();
dt.Columns.Add("IntValue", typeof(int));
dt.Columns.Add("StringValue", typeof(string));
dt.Rows.Add(1, "1");
dt.Rows.Add(1, "1");
dt.Rows.Add(1, "1");
dt.Rows.Add(2, "2");
dt.Rows.Add(2, "2");

var x = (from r in dt.AsEnumerable()
        select r["IntValue"]).Distinct().ToList();
share|improve this answer

With LINQ (.NET 3.5, C# 3)

var distinctNames = ( from row in DataTable.AsEnumerable()
 select row.Field<string>("Name")).Distinct();

 foreach (var name in distinctNames ) { Console.WriteLine(name); }
share|improve this answer
var distinctRows = (from DataRow dRow in dtInventory.Rows
                                select dRow["column_name"] ).Distinct();

var distinctRows = (from DataRow dRow in dtInventory.Rows
                                select dRow["col1"], dRow["col2"].. ).Distinct();
share|improve this answer
@Adi Lester: maybe select new { col1 = dRow["col1"], col2 = dRow["col2"], ...} ).Distinct(); is more correct? – Urik Mar 10 at 14:29
When you just have a List<DataRow> you can do this: var test = (from DataRow dRow in vm.LiveAssets select dRow["manname"]).Distinct(); – pat capozzi Apr 12 at 22:03

If by "in C#" you mean using LINQ then you can use the Distinct Operator.

share|improve this answer

I just happened to find this: http://support.microsoft.com/default.aspx?scid=kb;en-us;326176#1

While looking for something similar, only, specifically for .net 2.0

Im assuming the OP was looking for distinct while using DataTable.Select(). (Select() doesn't support distinct)

So here is the code from the above link:

class DataTableHelper {
public DataTable SelectDistinct(string TableName, DataTable SourceTable, string FieldName)
{   
        DataTable dt = new DataTable(TableName);
        dt.Columns.Add(FieldName, SourceTable.Columns[FieldName].DataType);

        object LastValue = null; 
        foreach (DataRow dr in SourceTable.Select("", FieldName))
        {
            if (  LastValue == null || !(ColumnEqual(LastValue, dr[FieldName])) ) 
            {
                LastValue = dr[FieldName]; 
                dt.Rows.Add(new object[]{LastValue});
            }
        }
        return dt;
}
private bool ColumnEqual(object A, object B)
{

        // Compares two values to see if they are equal. Also compares DBNULL.Value.
        // Note: If your DataTable contains object fields, then you must extend this
        // function to handle them in a meaningful way if you intend to group on them.

        if ( A == DBNull.Value && B == DBNull.Value ) //  both are DBNull.Value
            return true; 
        if ( A == DBNull.Value || B == DBNull.Value ) //  only one is DBNull.Value
            return false; 
        return ( A.Equals(B) );  // value type standard comparison
}
}
share|improve this answer

Following works. I have it working for me with .NET 3.5 SP1

        // Create the list of columns
        String[] szColumns = new String[data.Columns.Count];
        for (int index = 0; index < data.Columns.Count; index++)
            szColumns[index] = data.Columns[index].ColumnName;

        // Get the distinct records
        data = data.DefaultView.ToTable(true, szColumns);
share|improve this answer

To improve the above answer: The ToTable function on dataview has a "distinct" flag.

//This will filter all records to be distinct
dt = dt.DefaultView.ToTable(true);
share|improve this answer
1  
This doesn't appear to work. There is only one overload with a distinct Boolean parameter in it and it requires the parameter array. I think this will just return a table called "True" without any DISTINCT applied. – proudgeekdad Oct 15 '10 at 17:17
var ValuetoReturn = (from Rows in YourDataTable.AsEnumerable()
select Rows["ColumnName"]).Distinct().ToList();
share|improve this answer

You can use like that:

data is DataTable

data.DefaultView.ToTable(true, "Id", "Name", "Role", "DC1", "DC2", "DC3", "DC4", "DC5", "DC6", "DC7");  

but performance will be down. try to use below code:

data.AsEnumerable().Distinct(System.Data.DataRowComparer.Default).ToList();  

For Performance ; http://onerkaya.blogspot.com/2013/01/distinct-dataviewtotable-vs-linq.html

share|improve this answer

in C#? you should use SELECT DISTINCT(field) in your SQL

share|improve this answer
I need to select distinct values from grouped sql statement. – Ahmed Jul 29 '09 at 10:18

sthing like ?

SELECT DISTINCT .... FROM table WHERE condition

http://www.felixgers.de/teaching/sql/sql_distinct.html

note: Homework question ? and god bless google..

http://www.google.com/search?hl=en&rlz=1C1GGLS_enJO330JO333&q=c%23+selecting+distinct+values+from+table&aq=f&oq=&aqi=

share|improve this answer
to whomever downvoted me :S,, obviously the question was modified after my answer ?? (answer 10:15, question edited on 12:15 ) oh well.. thx for ur ignorance :) – Madi D. Oct 22 '09 at 8:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.