CREATE TRIGGER indent_delete AFTER DELETE  ON cn_tb_Indent
FOR EACH ROW 
BEGIN
delete from cn_tb_PayInfo where payinfo_Id in (select payinfo_Id from deleted)
END;
错误码: 1064
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'END' at line 5
MySQL