Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个数据集DS1。在这个数据集中有两个数据表:DT1和数据表DT2 的布局如下所示:
DS1
DT1
DT2
DT1 数据:
**ID Name** 1 Amit 2 Alok 3 Munish
DT2 数据:
**ID Name** 2 Alok 3 Munish 4 Firoj
我想创建一个如下所示的新表:
**ID Name** 2 Alok 3 Munish
该类DataTable有一个Merge方法:
DataTable
Merge
DataTable DT1; DataTable DT2; DT1.Merge(DT2);
数据表合并