Can we interchange parameters in procedure while calling

Answer Posted / vidya

If you name the parameter then you can interchange
otherwise you cannot. Like in the following example the
first case is positional and you cannot interchange. In the
second one its named and you can interchange.

Regular OraDatabase.standproc(102,'RAM'); -- Positional
OraDatabase.standproc(empno=>102,ename=>'RAM'); --Named

OraDatabase.standproc(ename=>'RAM',empno=>102);

Is This Answer Correct ?    22 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do I find duplicates in the same column?

732


How many sql are there?

733


What is the difference between an inner and outer join?

729


Explain sql data types?

830


define join and explain different type of joins? : Sql dba

736






what is sql in mysql? : Sql dba

816


How do you write an index?

703


How many types of normalization are there?

665


Is clustered index a primary key?

689


Difference between table function and pipelined function?

768


What is compound trigger?

752


How do you explain an index?

986


Is sql scripting language?

725


How to look at the current sql*plus system settings?

763


Why do we use sql constraints?

854