本文主要是介绍insert into select和select into的使用和区别介绍,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
insert into ... select ...:可将表1中的全部数据或者部分数据复制到表2中。
eg:
insert into t2(id,name,pwd)
select id,name,pwd from t1
注:t2必须存在。t1中查询的列名可不与t1列名相同。无 values
select...into:查询t1中的数据,插入到t2中。
eg:
select * into t2 from t1
注:t2被创建并填充数据。
这篇关于insert into select和select into的使用和区别介绍的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!