Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- netsh
- context
- IntelliJ
- ssh
- vscode
- find
- JavaScript
- 네트워크
- plugin
- xargs
- Eclipse
- web.xml
- profile
- Mac
- VirtualBox
- resource
- import
- Quartz
- Windows 10
- port
- grep
- 단축키
- lsof
- bash
- Source
- GIT
- maVen
- 줄바꿈 문자
- tomcat
- Windows
Archives
- Today
- Total
develog
plsql random 본문
DECLARE
V_RET VARCHAR2(100);
BEGIN
FOR I IN 1..10
LOOP
V_RET := DBMS_RANDOM.VALUE(1, 10);
DBMS_OUTPUT.PUT_LINE(V_RET);
END LOOP;
END;
// output
8.983907832266700117045697426891695805
7.85138851818458197159926611283188386042
1.15776646610204195640170576336466009082
6.89453227669484520864497406123738919765
2.92422113684781021718794966809375193052
1.53399736142110573992925036854080351923
8.09751621393351335845076805508522738852
2.24796689544798407007445926425282739649
9.33763531106610743912681545933826238586
1.2239063232291398010054811607314076998
'DB > PLSQL' 카테고리의 다른 글
PLSQL split (0) | 2014.03.14 |
---|---|
PLSQL 2차원 배열 (0) | 2013.12.12 |
Dynamic Cursor (0) | 2012.04.17 |
기본 구조 (0) | 2012.04.17 |