what is the difference between trigger and storedprocedures
Answer Posted / sunny kumar rana
1) A stored procedure can accept parameters while a trigger
cannot.
2) A trigger can’t return any value while stored procedures
depand on condition.
3) A trigger is executed automatically on some event while
a stored procedure needs to be explicitly called.
4) Triggers are used for insertions, update and deletions
on tables while stored procedures are often using
independently in the database.
5) A trigger cannot be written in a stored procedure.
However, the reverse is not possible.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is partition by in sql?
what is an execution plan? When would you use it? How would you view the execution plan? : Sql dba
Does truncate table reset auto increment?
Can we use the cursor's to create the collection in PL/SQL?
Why do we use partitions in sql?
What are the operators in sql?
What is pls_integer in pl sql?
What are string functions in sql?
What are the benefits of pl/sql packages?
what are date and time data types? : Sql dba
What is a record in a database?
What are instead of triggers?
What is the best free sql database?
what is the difference between clustered and non clustered index in sql? : Sql dba
what is rollback? : Sql dba