一个.net的统计不出来。请教一下,帮我改一改,谢了
TC_autoid route_autoid 这第一个表 select * from tr_consultative
97 15
98 15,16
99 15,18
100 16,17
101 14,1
102 1
route_autoid route_name 第二个表select * from tr_planRoute
1 上海
2 北京
3 正定
4 河北
5 河南
6 石家庄
7 福建
...
15 大连
16 黑龙江
...
两个表。我想统计,他们的次数
DataTable dt_TEmp = new DataTable();//新建
dt_TEmp.Columns.Add(new DataColumn( "region ", typeof(string)));//地区名
dt_TEmp.Columns.Add(new DataColumn( "regionJS ", typeof(string)));//计数
SqlDataAdapter dapt = null;
DataSet ds2 = new DataSet();
string strSQL2 = "select * from tr_consultative ";//列库里全部的
dapt = new SqlDataAdapter(strSQL2, con);
dapt.Fill(ds2, "Table1 ");
DataTable dt = ds2.Tables[0];
&nb