备份:
create table productinfo_bak as select * from productinfo;
删除productinfo表内的数据:
delete  from productinfo;
修改表结构:
alter table productinfo modify productif number(10,2);
还原表数据:
insert into productinfo select * from productinfo_bak;

参考博客:https://blog.csdn.net/zhou452840622/article/details/51840667

相关文章:

  • 2022-12-23
  • 2021-10-08
  • 2021-07-06
  • 2022-12-23
  • 2022-12-23
  • 2021-12-16
  • 2021-09-15
猜你喜欢
  • 2021-09-19
  • 2021-11-10
  • 2021-07-31
  • 2022-12-23
  • 2022-12-23
  • 2021-07-15
相关资源
相似解决方案