--------创建存储过程-------

create or replace procedure TestSP
as

begin
update table_name set CREATE_TIMESTAMP= sysdate-1 where id =2;
end;

 

testing

BEGIN
TESTSP();
--rollback;
END;

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-23
  • 2021-11-28
  • 2021-11-01
  • 2022-01-12
  • 2022-12-23
猜你喜欢
  • 2021-11-28
  • 2022-12-23
  • 2021-11-28
  • 2022-12-23
  • 2022-12-23
  • 2021-09-09
  • 2021-10-11
相关资源
相似解决方案