假设 a与b一对一或者a对b多
DataTable dt = new DataTable();
dt.Columns.Add("a_id" , typeof(string));
dt.Columns.Add("name" , typeof(string));
dt.Columns.Add("b_id" , typeof(string));
dt.Columns.Add("title " , typeof(string));
DataRow[] dr_;
for(int i = 0 ; i < a.Rows.Count ; i ++)
{
DataRow dRow = dt.NewRow();
dRow["a_id"] = a.Rows[i]["a_id"];
dRow["name"] = a.Rows[i]["name"];
dr_ = b.Select("a_id=" + a.Rows[i]["a_id"] );
dRow["b_id"] = a.Rows[i]["b_id"];
dRow["title"] = a.Rows[i]["title"];
dt.Rows.Add(dRow);
}
至此 表 dt 就是 表a与表b合起来的数据