Can we interchange parameters in procedure while calling



Can we interchange parameters in procedure while calling..

Answer / 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

More SQL PLSQL Interview Questions

What are sql constraints?

0 Answers  


what is the difference between cluster and non cluster index? : Sql dba

0 Answers  


Which is faster truncate or drop?

0 Answers  


What is clause in sql?

0 Answers  


How many clustered indexes can you have?

0 Answers  






What is relationship? How many types of relationship are there?

0 Answers  


Can you sum a count in sql?

0 Answers  


What is sql and how does it work?

0 Answers  


how can we encrypt and decrypt a data present in a mysql table using mysql? : Sql dba

0 Answers  


Is primary key is clustered index?

0 Answers  


Can triggers stop a dml statement from executing on a table?

0 Answers  


What are the benefits of pl sql?

0 Answers  


Categories