SQL Differences between stored procedure and triggers -


i'm having trouble understanding difference between stored procedure , trigger in sql. if kind enough explain me great.

thanks in advance

a stored procedure user defined piece of code written in local version of pl/sql, may return value (making function) invoked calling explicitly.

a trigger stored procedure runs automatically when various events happen (eg update, insert, delete).

imho stored procedures to avoided unless absolutely required.


Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -