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.
我在包含数据的数据集中有一个数据表“A”,我需要从数据表“A”获取数据到另一个数据表“B”,而没有数据表“A”的第一列
基本上我需要删除数据表的第一列并将其合并到第二个数据表中。
但这应该使用单行来完成。
有人知道怎么做吗???
谢谢...
试试这个:
Table.Columns.Remove("columnName");
或者
Table.Columns.RemoveAt(columnIndex);
我找到了答案:)
DataSet.Table[0].Columns.Remove("Column_Name");