摘要:
/日期******/ select trunc(sysdate) from dual --2013-01-06 今天的日期为2013-01-06 select trunc(sysdate, 'mm') from dual --2013-01-01 返回当月第一天. select trunc(sysd 阅读全文
posted @ 2022-04-06 15:34
林汉州win
阅读(106)
评论(0)
推荐(0)
摘要:
间隔时间: (1).每分钟执行 Interval ⇒ TRUNC(sysdate,'mi') + 1/ (24*60) 每小时执行 Interval ⇒ TRUNC(sysdate,'hh') + 1/ (24) (2).每天定时执行 例如:每天的凌晨1点执行 Interval ⇒ TRUNC(sy 阅读全文
posted @ 2022-04-06 15:02
林汉州win
阅读(81)
评论(0)
推荐(0)