好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

insert into select和select into的使用和区别介绍

ins 编程 ertwww.cppcns.com into ... select ...:可将表1中的全部数据或者部分数据复制到表2中。

eg:

复制代码 代码如下:

android
insert into t2(id,name,p js wd)
select id,name,pwd from t PSkhdAuv 1


注:t2必须存在。t1中查询的列名可不与t1列名相同。无 values

select...into:查询t1中的数据,插入到t2中。

eg:

复制代码 代码如下:


select * into t2 from t1


注:t2被创建并填充数据。

查看更多关于insert into select和select into的使用和区别介绍的详细内容...

  阅读:44次