SQL语句 怎么把从一个表中查出来数据插入到另一个表中

(1).select * into destTbl from srcTbl
(2).insert into destTbl(fld1, fld2) select fld1, 5 from srcTbl
原文地址:https://www.cnblogs.com/sntetwt/p/3796896.html