elect into 和 insert into select 兩種表復制語句
2007-12-13 16:31
select * into destTbl from srcTbl
insertinto destTbl(fld1, fld2) select fld1,’ 5‘ from srcTbl
| |||||||||
日 | 一 | 二 | 三 | 四 | 五 | 六 | |||
---|---|---|---|---|---|---|---|---|---|
24 | 25 | 26 | 27 | 28 | 29 | 1 | |||
2 | 3 | 4 | 5 | 6 | 7 | 8 | |||
9 | 10 | 11 | 12 | 13 | 14 | 15 | |||
16 | 17 | 18 | 19 | 20 | 21 | 22 | |||
23 | 24 | 25 | 26 | 27 | 28 | 29 | |||
30 | 31 | 1 | 2 | 3 | 4 | 5 |
select * into destTbl from srcTbl
insertinto destTbl(fld1, fld2) select fld1,’ 5‘ from srcTbl