摘要: select * into 目标表名 from 源表名 insert into 目标表名(fld1, fld2) select fld1, 5 from 源表名 以上两句都是将 源表 的数据插入到 目标表,但两句又有区别的: 第一句(select into from)要求目标表不存在,因为在插入时会 阅读全文
posted @ 2018-07-31 11:27 妖狐鬼魅 阅读(119) 评论(0) 推荐(0) 编辑