是否可以将 2 个数据表合并或合并为 1,其行数与第一个数据表相同。
这是使用 c# 和 asp.net
Dataset ds = new Dataset(); //Ds has 2 tables with same number of rows.
DataTable dtAll = new DataTable();
dtAll = ds.Tables[0].Copy();
dtAll.Merge(ds.Tables[1], true);
例如:Sl.no Date Amount Sold in first datatable
数据表 2 中收集的金额 最终数据表应为 sl.no Date AmountSold AmountCollected with union。
出售和收集的金额来自同一天。我希望我很清楚。
当我使用上面的 Merge() 时,它合并成双行。我错过了什么?!
谢谢!!