熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Oracle >> 正文

ORACLE裡取隨機數的幾種具體的方法

2022-06-13   來源: Oracle 

  在你的工作中是否會為了某個活動要隨機取出一些符合條件的EMAIL或者手機號碼用戶來頒發獲獎通知或其它消息?
  
  如果是的話可以用oracle裡生成隨機數的PL/SQL 目錄文件名在/ORACLE_HOME/rdbms/admin/dbmsrandsql
  
  用之前先要在sys用戶下編譯:
  
  SQL>@/ORACLE_HOME/rdbms/admin/dbmsrandsql
  
  它實際是在sys用戶下生成一個dbms_random程序包同時生成公有同義詞並授權給所有數據庫用戶有執行的權限
  
  使用dbms_random程序包 取出隨機數據的方法
  
   先創建一個唯一增長的序列號tmp_id
  
  create sequence tmp_id increment by start with maxvalue nocycle nocache;
  
   然後創建一個臨時表tmp_把符合本次活動條件的記錄全部取出來
  
  create table tmp_ as select tmp_idnextval as idemailmobileno from 表名 where 條件;
  
  找到最大的id號
  
  select max(id) from tmp_;
  
  假設為
  
   設定一個生成隨機數的種子
  
  execute dbms_randomseed();
  
  或者
  
  execute dbms_randomseed(TO_CHAR(SYSDATEMMDDYYYY HH:MI:SS));
  
   調用隨機數生成函數dbms_randomvalue生成臨時表tmp_
  
  假設隨機取
  
  create table tmp_ as select trunc(dbms_randomvalue()) as id from tmp_ where rownum<;
  
  [ 說明dbms_randomvalue()是取間的隨機數會有小數
  trunc函數對隨機數字取整才能和臨時表的整數ID字段相對應
  
  注意如果tmp_記錄比較多(萬條以上)也可以找一個約大於兩百行的表(假如是tmp_)來生成tmp_
  
  create table tmp_ as select trunc(dbms_randomvalue()) as id from tmp_ where rownum<201; ]
  
  5. tmp_1和tmp_2相關聯取得符合條件的200用戶
  
  select t1.mobileno,t1.email from tmp_1 t1,tmp_2 t2 where t1.id=t2.id;
  
  [ 注意:如果tmp_1記錄比較多(10萬條以上),需要在id字段上建索引。Tw.WinGWit.CoM]
  
  也可以輸出到文本文件:
  
  set pagesize 300;
  spool /tmp/200.txt;
  select t1.mobileno,t1.email from tmp_1 t1,tmp_2 t2 where t1.id=t2.id order by t1.mobileno;
  spool off;
  
  6. 用完後,刪除臨時表tmp_1、tmp_2和序列號tmp_id。

From:http://tw.wingwit.com/Article/program/Oracle/201311/17209.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.