本文介绍了Excel表中的SQL UPDATE数据库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我之前在Access论坛发布了这个 ,结果为负,所以会在这里试试。 虽然这个问题指定了一个Access数据库,但是/> 我也希望用我们拥有的大型MS SQL Server 数据库来实现这个目标。 问题如下: 以下SQL语句,在VBScript中使用, 将表格从Excel复制到Access mdb。 SQL = SELECT * INTO C1R0 &安培; _ "来自[C1R0 $] IN''''' &安培; _ " ''Excel 8.0; database = c:\ excel \UpdateFinal1.xls'';" 什么是SQL语句 UPDATE一个已经存在的Access表 包含Excel电子表格中的所有行? 电子表格和数据库的列是 相同。 谢谢 吉姆I had previously posted this in an Access forumwith negative results so will try here.Although this question specifies an Access database,I also wish to accomplish this with a large MS SQL Serverdatabase that we have.Question follows:The following SQL statement, used in VBScript,will COPY a table from Excel to an Access mdb.SQL = "SELECT * INTO C1R0" & _" FROM [C1R0$] IN ''''" & _" ''Excel 8.0;database=c:\excel\UpdateFinal1.xls'';"What is the SQL statement that willUPDATE an already existing Access tablewith all rows from Excel spreadsheet?The columns of both Spreadsheet and database are thesame.ThanksJim推荐答案 这篇关于Excel表中的SQL UPDATE数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-23 22:57