SQL大圣之路笔记——SQL 获取excel中的数据

Posted 王小二通往大圣之路

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL大圣之路笔记——SQL 获取excel中的数据相关的知识,希望对你有一定的参考价值。

 1  select 
 2   --case (isnumeric(CMF_No)) when 1 then Convert(decimal(18,0),CMF_No) 
 3   --else Convert(nvarchar(255),CMF_No) end as CMF_No,Disti_Name,
 4   --case (isnumeric(Disti_Invoice_Num)) when 1 then Convert(decimal(18,0),Disti_Invoice_Num) else ‘sss‘ end as Disti_Invoice_Num,
 5   case  when len(Disti_Invoice_Num)<=1 then null when isnumeric(Disti_Invoice_Num) = 1 then Convert(decimal(18,0),Disti_Invoice_Num) else Convert(nvarchar(255),Disti_Invoice_Num)
 6   end as Disti_Invoice_Num,
 7   Disti_Invoice_Date,Scan_Date,Bar_Code,Product_Code,
 8   case (isnumeric(Channel_GID_Num)) when 1 then Convert(decimal(18,0),Channel_GID_Num) else Convert(nvarchar(255),Channel_GID_Num) end as Channel_GID_Num,
 9   Channel_Name,Channel_Address 
10   
11   from OpenDataSource (Microsoft.ACE.OLEDB.12.0,Data Source=C:\Inetpub\wwwroot\DataSynchronization\DownData\2016914164711677.xls;Extended properties=Excel 12.0)...[Sheet1$];

 

以上是关于SQL大圣之路笔记——SQL 获取excel中的数据的主要内容,如果未能解决你的问题,请参考以下文章

SQL大圣之路笔记——SQL学习笔记

c#大圣之路笔记——c# DataGrid checkbox 操作

c#大圣之路笔记——c# 从DataGrid中导出数据 Session

c#大圣之路笔记——TFS解决离职人员文件签出遗留签入问题

excel中的sql查询

如何在 Excel 中生成的 SQL 插入语句中获取行数?