sqlserver批量插入
declare @t table (id int) if(exists(select name from tempdb..sysobjects where name like'%test%' and type='U')) drop table #test Create Table #test(ids int ) insert into 192.168.1.10.数据库.表1(name,password) output inserted.id into @t sele
declare @t table (id int)
if(exists(select name from tempdb..sysobjects where name like'%test%' and type='U'))
drop table #test
Create Table #test(ids int )
insert into 192.168.1.10.数据库.表1(name,password) output inserted.id into @t
select name ,password
from [user]
where not exists(select b.name from 192.168.1.10.数据库.表1 b where name= b.name)
insert into #test(ids) SELECT id FROM @t
insert into insert into 192.168.1.10.数据库.表2(truename,userid)
select username,ids from #test
output不能远程 有没有别的办法 能获取到刚刚插入的所有的主键ID 插入到 表2中
上一篇: PHP实现多文件上载的系统程序_PHP
推荐阅读
-
sqlserver批量插入
-
Uploadify 批量上传,结合ThinkPHP 使用方法....
-
Python批量查询关键词是否是指数词
-
Python简单脚本批量查询百度蜘蛛的真假
-
SqlServer2008 数据库同步的两种方式(Sql JOB)
-
Azure SQL数据库迁移阿里云RDS SQLserver实践 sql serversqlwindowscos
-
sqlserver2008查找某数据库中的列是否存在某个值 博客分类: sqlserver SQL Server
-
怎么在一个php网页插入一个富文本编辑框并把内容存入mysql
-
SQLSERVER读懂语句运行的统计信息
-
php批量删除数据库下指定前缀的表以prefix_为例,批量删除prefix