What is a trigger?
Question
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
It will take less than 1 minute to register for lifetime. Bonus Tip - We don't send OTP to your email id Make Sure to use your own email id for free books and giveaways
Answers ( 4 )
.pyc contains the compiled byte code of .py file
Sorry it a private answer.
A trigger is a stored procedure in the database which executes when a special event occurs for example update of a row
Trigger in SQL is a special type of stored procedure that is defined to execute automatically in place or after data modification. It allows you to execute a batch of code when an INSERT, UPDATE, or any query is executed against a specific table.