You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cprint("Current database encoding is: {0}".format([db.query_result[0]["encoding"]]))
146
146
147
+
# Create a TRIGGER and trigger it!
148
+
db.query("CREATE TRIGGER increase_salary_after_employee_termination AFTER DELETE ON "+table_name+" BEGIN UPDATE "+table_name+" SET salary = salary + 100;END;")
0 commit comments