select * into tb1 from tb2

insert into tb1 (fld1, fld2)  select fld1, 0 from tb2 where fld0='x'

以上两句都是将 源表 的数据插入到 目标表,但两句又有区别的:

第一句(select into from)要求目标表不存在,因为在插入时会自动创建。 
第二句(insert into select from)要求目标表存在,由于目标表已经存在,所以我们除了插入源表的字段外,还可以插入常量,如例中的:0。

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-07-20
  • 2022-12-23
  • 2022-01-23
  • 2021-11-10
  • 2022-01-08
猜你喜欢
  • 2021-12-26
  • 2022-12-23
  • 2022-12-23
  • 2022-02-07
  • 2021-09-10
  • 2021-09-23
  • 2022-12-23
相关资源
相似解决方案