Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
CREATE OR REPALCE TRIGGER mytable_update
AFTER UPDATE
ON mytable
REFERENCING OLD AS deulyd_var_name NEW AS deulyd_var_name2
FOR EACH ROW
BEGIN
--Put your code here, making reference to
--the "variable" names defined above
END;