insert 与select的结合使用

常用的三种方式:

1 selectinto table2 from table1;

 

   这种执行方式:首先是创建table2,然后将table1的内容复制过去。

 

2 insert into table2(fld1, fld2) select fld1, aaa  from table1

  

   这种执行方式:从table1中检索出fld1字段和常量aaa赋值给table2的两个字段。

 

3 多个inset语句执行。eg

insert into table2(fld1,fld2) select fld1, aaa  from table1

/

insert into table2(fld1,fld2) select fld1, bbb  from table1

/

insert into table2(fld1,fld2) select fld1, ccc   from table1

/

 

你可能感兴趣的:(table,insert)