insert into select和select into的應用和差別引見。本站提示廣大學習愛好者:(insert into select和select into的應用和差別引見)文章只能為提供參考,不一定能成為您想要的結果。以下是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被創立並填湊數據。