欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

sql复制表结构和数据的实现方法

程序员文章站 2023-12-16 20:24:46
sql server中使用select … into语句 按照使用场合可以分为以下几类: 1. 实现全表备份:如:select * inot t1 from titles...
sql server中使用select … into语句

按照使用场合可以分为以下几类:

1. 实现全表备份:如:select * inot t1 from titles

2. 备份表的一部分列(不写*而写出列的列表)或一部分行(加where条件)

如: select title_id,title,price into t2 from titles—部分列

select * into t2 from titles whree price>10 –部分行

select title_id,title,price into t2 from titles whree price>10 –部分行和部分列

3. 只复制表的结构:如:select * inot t1 from titles where 1=2

4. 查询结果来源于多个表:如:

select title_id,title,pub_name into t3

from titles t inner join publishers p

on t.pub_id=p.pub_id

5.select * into 要复制到的数据库名.dbo.表名 from 原数据库名.dbo.表名

上一篇:

下一篇: