objectnull

对于sql server 来说

如果是新的表,那么这样做

select * into newtable from ta;

如果是已有的表
insert into newtable select * from ta;

如果是oracle
如果是新的表,那么这样做

create table newtable select * from ta;

如果是已有的表
insert into newtable select * from ta;

分类:

技术点:

相关文章:

  • 2022-01-02
  • 2021-09-07
  • 2021-10-17
  • 2022-02-06
  • 2022-12-23
  • 2021-06-01
  • 2021-12-06
猜你喜欢
  • 2022-02-13
  • 2021-12-08
  • 2021-12-12
  • 2022-12-23
  • 2021-06-14
  • 2021-12-23
相关资源
相似解决方案