1. 程式人生 > >將一張表的查詢結果插入到另一張表

將一張表的查詢結果插入到另一張表

 1 selectinto 和 insertintoselect 兩種表複製語句
 2 select*into destTbl from srcTbl
 3  4 insertinto destTbl(fld1, fld2) select fld1, 5from srcTbl
 5  6 以上兩句都是將 srcTbl 的資料插入到 destTbl,但兩句又有區別的。
 7  8 第一句(selectintofrom)要求目標表(destTbl)不存在,因為在插入時會自動建立。
 9 10 第二句(insertintoselectfrom)要求目標表(destTbl)存在,由於目標表已經存在,所以我們除了插入源表(srcTbl)的欄位外,還可以插入常量
11 12