In this post, we will see how to resolve How to call stored procedure with clause
Question:
I found this way also called be used.I am able to call function with clause.
Code:
But now I want to know how to call procedure?
Best Answer:
You can’t call the procedure in SQL, but you can in PL/SQL. How? Create both function and procedure; then call procedure from function and – finally – return result:If you have better answer, please add a comment about this, thank you!
Source: Stackoverflow.com