博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用SQL 脚本 导入 Excel 数据
阅读量:5959 次
发布时间:2019-06-19

本文共 633 字,大约阅读时间需要 2 分钟。

 一、导入到 Mysql 数据库

     先将excel 文件另存为 *.csv 文件,然后执行下列命令。

 load data local infile "path.csv" into talble(col1,col2,col3,col4,...);

 

二、导入Sql Server 数据库

     首先需要开户 Ad Hoc Distributed Queries 选项,开户方法如下:

 exec sp_configure 'show advanced options',1 

reconfigure

exec sp_configure 'Ad Hoc Distributed Queries',1
reconfigure

 

然后执行:

SELECT 
* 
into newtable
FROM 
OpenDataSource
'
Microsoft.Jet.OLEDB.4.0
',
 'Data Source="F:\一页管理.xls";User ID=Admin;Password=;Extended properties=Excel 5.0')...[Sheet1$] 
 

 

 最后关闭 Ad Hoc Distributed Queries 选项

exec sp_configure 
'
Ad Hoc Distributed Queries
',
0
reconfigure
exec sp_configure 
'
show advanced options
',
0

reconfigure 

 

 

转载地址:http://hsuax.baihongyu.com/

你可能感兴趣的文章