ds.Tables[0].Columns.Add("rowNo", System.Type.GetType("System.Int16"));
for (i = 0; i < ds.Tables[0].Rows.Count; i++)
{
System.Data.DataRow row =ds.Tables[0].Rows[i];
ds.Tables[0].Rows[i]["rowNo"] = i;
}
//统计结果,注意不能用count(*)
i = (int)ds.Tables[0].Compute("count(system_id)","");