What is a trigger? Question Inculcate an example along in progress 0 SQL Dhruv2301 55 years 4 Answers 989 views Great Grand Master 0
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.