News

When migrating from SQL Server to MySQL, handling triggers properly is extremely important since it is essential part of the database logic. There is a little chance of automating this conversion ...
SQL Triggers are database objects that are associated with a table and are automatically executed when a specific event occurs, such as an insert, update, or delete.
Sometimes we need to disable trigger on a table especially when performing admin tasks on a table. following commands provide a quick way to disable all the triggers for a table. please note that when ...
-- a Trigger is a block of code that executes automatically executes when an event takes place in a table. -- for example we have these 2 tables, invoice and payments - when a client makes a payment ...