龙鱼家园,个性,交流,技术,专注于网站技术的研究 龙鱼家园 | 两种表复制语句区别
 

两种表复制语句区别

Sql代码
select * into target_table from source_table;  
insert into target_table(column1,column2) select column1,5 from source_table; 

select * into target_table from source_table;
insert into target_table(column1,column2) select column1,5 from source_table;

以上两句都是将源表source_table的记录插入到目标表target_table,但两句又有区别。
第一句(select into from)要求目标表target_table不存在,因为在插入时会自动创建。
第二句(insert into select from)要求目标表target_table存在,由于目标表已经存在,所以我们除了插入源表source_table的字段外,还可以插入常量,如例中的:5。

http://javaboy2006.javaeye.com/blog/176147


Search

友情链接

  • 微足迹
  • 资质通鉴
  • 译言
  • 代码发芽网
  • 清清月儿
  • 二频
  • dotnetblogengine
  • 苹果树下
  • 联系我:
    leonardleonard@126.com

    © Copyright 2012