Oracle產生隨機日期時間,oracle產生日期

來源:互聯網
上載者:User

Oracle產生隨機日期時間,oracle產生日期

一、產生隨機日期


例如,產生一個2015年內的任意日期:

/*
 * 分析:2015年內的任意日期,即日期範圍是(2015-01-01, 2015-12-31)
 * 可以轉化為 2015-01-01 + (0, 365),
 * 其中,2015-01-01 就是'指定日期’; (0, 365) 就是'指定範圍’
*/


1. 首先確定2015年1月1日的日期整數:

select to_char(to_date('2015-01-01', 'yyyy-MM-dd'), 'J') from dual; --系統給的結果是: 2457024

2. 產生指定範圍[min_value, max_value]內的隨機日期:

select to_date(2457024 + trunc(DBMS_RANDOM.VALUE(0, 365)), 'J') from dual;

二、產生隨機日期+時間

SELECT to_date(TRUNC(DBMS_RANDOM.VALUE(       to_number(to_char(to_date('20150101','yyyymmdd'),'J')),       to_number(to_char(to_date('20150501','yyyymmdd')+1,'J')))),'J')+       DBMS_RANDOM.VALUE(1,3600)/3600       prize_timeFROM dual;

產生2015-01-01 00:00:00至2015-05-01 23:59:59內的日期時間


作者:itmyhome


相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.