what is difference between procedure and function
Answer Posted / shanmukha srinivas
procedure can run in sql block like
begin
sp_procedure_name(input parameters);
end;
function can run in sql block like
select sf_function_name(input paramters)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what does myisamchk do? : Sql dba
Which data type is a composite type?
how to get a list of all tables in a database? : Sql dba
What is sqlcommand?
what is a table called, if it has neither cluster nor non-cluster index? What is it used for? : Sql dba
what are tables and fields? : Sql dba
discuss about myisam key cache. : Sql dba
List and explain the different types of join clauses supported in ansi-standard sql?
Explain the structure of pl/sql in brief.
What are the different schemas objects that can be created using pl/sql?
Is a table valued function object?
What is clause?
How can we avoid duplicating records in a query?
Why functions are used in sql?
What is rename in sql?