两种方法1数据库直接去除重复selectdistinct*from表名去除了重复行distinct2对DataTable直接进行操作DataTabledt=db.GetDt("select*from表名");//获得datatableDataViewdv=newDataView(dt);//虚拟视图吧,我这么认为Dat