Friday, 25 May 2012

What are the different parameter modes, which can be used in the function specification? | PL SQL

 The three different modes, IN, OUT, and IN OUT, can be used in the function specification. However, it is recommended to use only the IN mode. This is because functions are supposed to accept values from the calling environment and return a single value.