插入 日期时间 循环插入

declare
  total date:=  trunc(sysdate-1) ;
  begin
  for i_count in 1..10000 LOOP
   insert into DQ_DATE(date_time)  values (  total );
  total := total + 1/24;
  end loop;
end;

 

相关文章:

  • 2022-02-12
  • 2021-12-04
  • 2021-10-03
  • 2021-12-09
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-11-09
  • 2022-12-23
  • 2021-12-29
  • 2021-11-27
  • 2021-10-20
  • 2021-07-31
相关资源
相似解决方案