Posts for SQL

SQL Trigger Example | Triggers in SQL Tutorial

SQL Trigger Special procedures are activated when an insertion, update or deletion occurs in a table or view. SQL Trigger differs from stored procedures in that they are not called directly by the user: when a certain event occurs in the table, they are executed. Benefits: Maintain data integrity: update associated tables. Creates system logs: […]

August 25, 2020 in Snippets & SQL