आपका create function
कोड अच्छा दिखता है, हालांकि आप आह्वान नहीं कर रहे हैं समारोह ठीक से। एक फ़ंक्शन कुछ देता है, जिसे आपको या तो select
करना होगा , असाइन करें, प्रिंट करें या मूल्यांकन करें।
यहां मान्य फ़ंक्शन कॉल के कुछ उदाहरण दिए गए हैं:
-- print the return value
begin
dbms_output.put_line(test_func(5));
end;
/
1 rows affected
dbms_output:
5
-- select the return value
select test_func(5) from dual;
| TEST_FUNC(5) |
| -----------: |
| 5 |