博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
数据库表之间的数据导入 sql语句
阅读量:6229 次
发布时间:2019-06-21

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

一、带数据库连接的导入

insert into OPENDATASOURCE('SQLOLEDB','Data Source=222.35.*.*;User ID=***;Password=123456').yyedu.dbo.Article(ArticleID,CategoryID,CategoryName,Title,SubTitle,Author,Source,keyword,Description,
[Content],ClickCount,TimePublish,CreateDate,LastUpdateDate,CreateUserID,ID)
select newid() as id,'8243956A-4564-41DA-BC43-A48594B7F795' as categoryid,'本地新闻' as categoryname,
a.Title,a.Subheading,a.Author,a.CopyFrom,a.Keyword,a.Intro,a.Content,a.Hits,a.updatetime,
a.createtime,a.UpdateTime,a.Inputer,a.articleID
from dbo.PE_Article a inner join dbo.PE_Class b on a.classid=b.classid where b.classid='1' and a.status=3

 

二、不带数据库连接的导入

insert into dscms_edu.dbo.Article(ArticleID,CategoryID,CategoryName,Title,SubTitle,Author,Source,keyword,Description,

[Content],ClickCount,TimePublish,CreateDate,LastUpdateDate,CreateUserID,ID)
select newid() as id,'8243956A-4564-41DA-BC43-A48594B7F795' as categoryid,'本地新闻' as categoryname,
a.Title,a.Subheading,a.Author,a.CopyFrom,a.Keyword,a.Intro,a.Content,a.Hits,a.updatetime,
a.createtime,a.UpdateTime,a.Inputer,a.articleID
from dbo.PE_Article a inner join dbo.PE_Class b on a.classid=b.classid where b.classid='1' and a.status=3

本文来出自:

转载于:https://www.cnblogs.com/520wife/archive/2012/02/17/2355390.html

你可能感兴趣的文章
中国联通开展多场景蜂窝车联网业务示范
查看>>
1星|《追随》:洞察力太差,有效信息太少,咨询经验太少(举的例子以跟自己孩子的互动为主)...
查看>>
Android:MVC模式(上)
查看>>
vi编辑器的使用(2)
查看>>
bootstrap-.col-md-* 栅格类
查看>>
解释器模式-类行为型
查看>>
虚拟现实强势“入侵”游戏盛典China Joy
查看>>
bootstrap-分页导航(翻页分页导航)
查看>>
innobackupex备份mysql数据库
查看>>
HTML5新标签的兼容性处理
查看>>
iptables学习笔记
查看>>
jQuery中的$(window)与$(document)的用法区别
查看>>
java中多种写文件方式的效率对比实验
查看>>
Cisco 2960 配置
查看>>
阿里大鱼数据库存储方案
查看>>
if判断的几种用法
查看>>
mysql安装与初始配置
查看>>
su命令
查看>>
linux 安装nginx
查看>>
建议把.CSV的默认打开方式改成任意一个文本 编辑器,系统自带的记事本就是个不错的选择...
查看>>