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
Can sql function call stored procedure?
Why trigger is used in sql?
When you have to use a default "rollback to" savepoint of plvlog?
How does sql store data?
What is the difference between an inner and outer join?
What is a table?
Are pl sql variables case sensitive?
How do rank () and dense_rank () differ?
Why we use triggers in mysql?
how can we submit a form without a submit button? : Sql dba
what's the difference between a primary key and a unique key? : Sql dba
what are all types of user defined functions? : Sql dba
What is difference between inner join and self join?
how would you write a query to select all teams that won either 2, 4, 6 or 8 games? : Sql dba
What are data types in pl sql?