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.
我正在使用 ACE OLEDB 将 excel 文件加载到 DataTable 中。
我有一个需要从文件中获取的列的列表(列名)。
问题是我找不到任何有关如何仅将 Excel 中的特定列放入 DataTable 的工作源。
您可以像查询任何其他 SQL 语句一样查询列:
SELECT [columnName1], [columnName2] FROM Sheet1
columnName 应该是您尝试获取的列标题中的值。