select yl_NerseName from tb_Nerse 
union
select yl_DoctorName from tb_Doctor";
//把doctor 和 nerse两个表的结果集合并为一个结果集

 

select * into destTbl from srcTbl
insert into destTbl(fld1, fld2) select fld1, 5 from srcTbl

以上两句都是将 srcTbl 的数据插入到 destTbl,但两句又有区别的。
第一句(select into from)要求目标表(destTbl)不存在,因为在插入时会自动创建。
第二句(insert into select from)要求目标表(destTbl)存在,由于目标表已经存在,所以我们除了插入源表(srcTbl)的字段外,还可以插入常量

相关文章:

  • 2021-07-28
  • 2021-10-19
  • 2022-12-23
  • 2022-12-23
  • 2021-08-26
  • 2022-02-19
  • 2021-12-04
猜你喜欢
  • 2021-06-18
  • 1970-01-01
  • 2021-06-16
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-06
相关资源
相似解决方案