DataTable Distinct1 C# DataTable에서 중복 제거한 결과 얻기(Select Distinct) 데이타베이스에 쿼리를 수행하여 얻은 DataTable의 중복을 제거한 결과를 얻는 방법입니다. 쿼리에서는 Select Distinct Column1, Column2, ... From TableName과 동일 합니다. 아래의 코드를 참고하세요. //DataTable 생성 DataTable table = new DataTable(); // 컬럼 생성 table.Columns.Add("YEAR", typeof(int)); table.Columns.Add("MONTH", typeof(int)); table.Columns.Add("WEIGHT", typeof(int)); // 데이터 생성 table.Rows.Add(new object[] { 2016, 1, 10 }); table.Rows.Add(new objec.. 2016. 8. 8. 이전 1 다음