ykgbk

创建一个table2  向table2中插入 table1中name为11的所有行(前提table2不存在)

select * into table2 from table1 where name=‘ 11’

 

                          向table4中插入table3中name为11的所有行(前提table4存在)

insert into table4  select  *  from table3  where name=‘ 11’

分类:

技术点:

相关文章:

  • 2021-12-21
  • 2021-08-27
  • 2021-11-13
  • 2021-10-19
  • 2021-08-27
  • 2021-08-27
  • 2021-10-29
  • 2021-08-27
猜你喜欢
  • 2022-02-05
  • 2022-12-23
  • 2021-08-27
  • 2021-07-11
  • 2021-11-12
  • 2021-07-30
相关资源
相似解决方案