Store procedure will return a value?
Answers were Sorted based on User's Feedback
Answer / raji_4u
stored procedure can not return a value using the return
statement. though a stored procedure can contain a return
statement but should not return a value.simply "return".
in a manner,stored procedure can return values to the
calling block through the OUT,INOUT parameter modes.
Is This Answer Correct ? | 20 Yes | 0 No |
Answer / neel armstrong
Stored procedure will return the values based on the OUT
parameters
Is This Answer Correct ? | 12 Yes | 1 No |
Answer / sravanthi280
A procedure need not return a value always.
Is This Answer Correct ? | 4 Yes | 0 No |
Answer / adarsh katiyar
Iin a manner,stored procedure can return values to the block when found any error in the block. Then block exit out and stop all transction immediate.
Is This Answer Correct ? | 0 Yes | 0 No |
What is sharding in sql?
need to split a string into seperate values. eg. col1 col2 ---------- 100 - 'a,b,c' 200 - 'a,x,b,d,e' 300 - 'c' result: value count ------------- a - 2 b - 1 c - 2 etc.
How to delete same emp id in sql query for exmaple in emp table emp id, empname, emp address. for example emp id =5, repeated in two times in rows same id how to delete same empid please any one of the write query send in my id
What are the data types allowed in a table?
How do you get all records from 2 tables. Which join do you use?
Does user triggers have entry for trigger with compilation errors?
What is a pragma statement?
Types of joins ?
How do you update a table in sql?
What is a unique key?
How delete all data from table in sql?
Why do we need cursor in pl sql?