参考资料 https://blog.csdn.net/pan_junbiao/article/details/82935992 https://www.cnblogs.com/dansediao/p/5482467.html https://www.cnblogs.com/shiyh/p/7478241.html excel转成datatable工具类(ExcelHelp) using System; using System.Collections.Generic; using Sys…
sql server 中如何使用Excel文件导入数据?我做个测试,首先建立一个测试表(民族表) --创建一个民族表-- create table BdsNation( Uid int not null, Code ) not null, Name ) not null, NOtes ) null ) --查询民族表-- select * from BdsNation 查询结果…