How do I create a trigger in MySQL similiar to the trigger created for mssql:

CREATE TRIGGER DEL_DE ON KRONOS
AFTER DELETE
AS
        DELETE FROM
                DE_Metrics
        WHERE
                KID=(
                        SELECT
                                ID
                        FROM
                                DELETED
                );

I already read online mysql TRIGGER, CREATE TRIGGER and USING TRIGGER
to no avail.
--
Please avoid sending me Word or PowerPoint attachments.
See http://www.gnu.org/philosophy/no-word-attachments.html

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to