Oracle進行模擬測試資料的乙個例子

2021-09-05 08:16:17 字數 717 閱讀 9741

-- 'u', 'u' - 返回全是大寫的字串

-- 'l', 'l' - 返回全是小寫的字串

-- 'a', 'a' - 返回大小寫結合的字串

-- 'x', 'x' - 返回全是大寫和數字的字串

-- 'p', 'p' - 返回鍵盤上出現字元的隨機組合

select

trunc(dbms_random.value(1,101)),

dbms_random.string('~',5),

dbms_random.string('l',5),

dbms_random.string('l',5), 

dbms_random.string('a',5),

dbms_random.string('a',5),

dbms_random.string('u',5),

dbms_random.string('u',5), 

dbms_random.string('x',5),

dbms_random.string('x',5),

dbms_random.string('p',5),

dbms_random.string('p',5)   

from (

select level,rownum rn

from dual

connect by rownum<=1001 )

Oracle迴圈插入測試資料

declare maxrecords constant int 1000 i int 1 begin for i in 1.maxrecords loop insert into userinfo userid,login,password,firstname,lastname,isadminist...

構造測試資料 對比測試資料

正確 include using namespace std typedef long long ll const int max n 1e6 10 intmain return0 author max n date 2019 10 04 15.03.21 description 正確 錯誤 inc...

Oracle批量生成測試資料方法

一 test windos方式 declare maxrecords constant int 1000 i int 1 begin for i in 1.maxrecords loop insert into test2 id,name values test2 seq.nextval,to ch...