What is the Difference between Procedure and Function.Can we
call a Function in a DML?

Answers were Sorted based on User's Feedback



What is the Difference between Procedure and Function.Can we call a Function in a DML?..

Answer / sharad kumar

1. Function must return a value like any other Programing
Language.
2.yes we can call function from a DML.Remember count(*),sum
etc...

Is This Answer Correct ?    13 Yes 4 No

What is the Difference between Procedure and Function.Can we call a Function in a DML?..

Answer / ankush

Function always return a value. procedure may or may be not.
IN a select statement function may be called but we should
execute the procedure.

We can call a stored function from dml statement.

Here is simple example


CREATE OR REPLACE FUNCTION TEST_1 RETURN NUMBER IS

BEGIN

RETURN(10);

END;


SELECT TEST_1 FROM DUAL;


update emp

set sal = sal+ sal*test_1();


To be called from an sql statement a function should follow
the following purity rules.
1) When called from a SELECT statement , the function
should not modify database objects.
2) When called from INSERT , UPDATE, DELETE statements ,
the function can not query or modify the tables that was
modified by the statement.
3)When called from SELECT , DELETE, UPDATE, INSERT
Statements , a function should not contain TCL, DDL
commands.

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More SQL PLSQL Interview Questions

what is bdb (berkeleydb)? : Sql dba

0 Answers  


what are %TYPE and %ROWTYPE? what is the difference?

7 Answers   ICICI, Saama Tech, Sail,


is it possible to pass an object or table to a procedure as an argument?

0 Answers  


Do we need to create index on primary key?

0 Answers  


Is progress software supports to ( pl/sql )?

0 Answers  






How to run sql statements through the web interface?

0 Answers  


what happens if you no create privilege in a database? : Sql dba

0 Answers  


How is indexing done in search engines?

0 Answers  


What is varchar example?

0 Answers  


Why is %isopen always false for an implicit cursor?

0 Answers  


how to analyze tables with 'mysqlcheck'? : Sql dba

0 Answers  


What are the syntax and use of the coalesce function?

0 Answers  


Categories