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 | 31 |
Tags
- plugin
- tomcat
- GIT
- Windows
- bash
- port
- grep
- import
- IntelliJ
- context
- resource
- Eclipse
- VirtualBox
- 줄바꿈 문자
- vscode
- web.xml
- ssh
- Source
- xargs
- Mac
- Quartz
- JavaScript
- profile
- find
- 네트워크
- maVen
- netsh
- 단축키
- Windows 10
- lsof
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 |
Comments