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
- Windows
- VirtualBox
- tomcat
- 네트워크
- IntelliJ
- resource
- Source
- profile
- import
- Quartz
- ssh
- grep
- Windows 10
- lsof
- port
- bash
- Mac
- context
- xargs
- netsh
- plugin
- 단축키
- maVen
- find
- 줄바꿈 문자
- vscode
- GIT
- web.xml
- JavaScript
- Eclipse
Archives
- Today
- Total
develog
plsql default parameter 본문
DECLARE
FUNCTION FN_TEST
(
P_PARAM1 IN NUMBER
, P_PARAM2 IN NUMBER DEFAULT 0
)
RETURN NUMBER
IS
BEGIN
RETURN P_PARAM1 + P_PARAM2;
END;
BEGIN
DBMS_OUTPUT.PUT_LINE(FN_TEST(1));
DBMS_OUTPUT.PUT_LINE(FN_TEST(1, 1));
END;
'DB > Oracle' 카테고리의 다른 글
trigger (0) | 2013.02.08 |
---|---|
WMSYS.WM_CONCAT (0) | 2013.01.10 |
Pseudo Columns (0) | 2012.12.12 |
split (0) | 2012.12.11 |
oracle outer join or (0) | 2012.12.06 |
Comments