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被創建並填充數據。