Home  >  Article  >  Database  >  mysql 5.5 触发器的问题_MySQL

mysql 5.5 触发器的问题_MySQL

WBOY
WBOYOriginal
2016-05-31 08:50:08955browse

1064

正确的写法如下:

DELIMITER $$
CREATE TRIGGER `tkdsp_setspxx` BEFORE DELETE ON `tkdsp` FOR EACH ROW BEGIN
    update spxx set kcsl=kcsl-old.sl,kczj=kcsl*jhprice where spid=old.spid;
    END$$

DELIMITER ;

记一下

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn