如何用VBA把这个表格 新增到SQL SERVER数据库里的员工总表了,只要这9行的?

如何用VBA把这个表格 新增到SQL SERVER数据库里的员工总表了,只要这9行的?,第1张

大约后面再添上以下语句,注意WHERE开始是条件可以不要,7列字段名按我格式一个个填上去

cn.Open strCn

strSQL = "Select 表名.姓名,表名.性别 from 表名 where 表名.条件列名=条件"

rs.Open strSQL, cn, 1, 3

Sheet1.Range("A1", "Z65000").Clear

Sheet1.Range("A1").CopyFromRecordset rs

rs.Close

cn.Close

Set rs = Nothing

Set cn = Nothing

create database employee

go

create table people(sno int(10) primary key, sname varchar(20) not null,sage int(5) not null,pno int(5) not null,ssalary int(10) not null)

go

create table department(pno int(10) primary key,pname varchar(20) not null primary key,pnumber int(10) not null,phead varchar(20) not null)

go

create table project(no int(10) primary key,name varchar(20) not null,pdepartment varchar(20) not null)

go


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9923298.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-03
下一篇 2023-05-03

发表评论

登录后才能评论

评论列表(0条)

保存