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 |
what is union, minus and interact commands? : Sql dba
In a package if we have 10 procedures or functions,How to know which will execute first?
----> There is a table T with two columns C1 and C2. The data is as below: C1 C2 1 4 2 5 3 6
List the differences between plsql - function & procedures
What are the three forms of normalization?
What is the use of time stamp in select statement?
What is primary key sql?
What is a sql schema used for?
declare l1 number := null; l2 number :=null; begin if l1=l2 then message('equal'); else if l1<>l2 then message('not equal'); else message('else'); end if; end if; end; What will be the output ?
Can we delete column in sql?
Does postgresql run on the cloud?
Why we use stored procedure instead of query?