30-4 向表中插入多条记录

Posted Strugglinggirl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了30-4 向表中插入多条记录相关的知识,希望对你有一定的参考价值。

----------------------向表中插入多条记录--------------------


--将TblStudent表的结构和表中的数据备份到TblStudent20140506Backup表中。
--TblStudent20140506Backup表是在执行 select into 语句时创建的。
--select into 语句不能重复执行,因为每次执行都会创建一个TblStudent20140506Backup表。
--TblStudent表结构包括自动编号列都会在TblStudent20140506Backup表创建,但是TblStudent中的约束并不会出现在TblStudent20140506Backup表中。
select * into TblStudent20140506Backup from TblStudent


--只拷贝表结构,不拷贝数据
select top 0 * into TblStudent20140506Backup from TblStudent


-------------------------------------
--使用insert into 表 select ... from 表(TblStudent20140506Backup是已创建好的表)
insert into  TblStudent20140506Backup
select tsname,tsgender,tsaddress,tsphone,tsage,tsbirthday,tscardid,tsclassid
from TblStudent
where tsage=

 

以上是关于30-4 向表中插入多条记录的主要内容,如果未能解决你的问题,请参考以下文章

java中怎么一次性向表中插入一条或多条数据

PL/SQL 代码不向表中插入记录

MySQL数据库

SQL INSERT INTO 语句:向表中插入新记录语法及案例剖析

使用insert语句避免向表中插入重复数据

如何插入多条记录并获取标识值?