PHP触发器的有关问题
程序员文章站
2022-06-10 12:43:10
...
PHP触发器的问题
create trigger bookreturn before delete on borrowitem
for each row
begin
update book
set remain=remain+1
where book.bookid=old.bookid
end
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
无论我在程序里里面加不加分号都是这样。。。。
如果把
update book
set remain=remain+1
where book.bookid=old.bookid
去掉就没报错。。。
------解决方案--------------------
create trigger bookreturn before delete on borrowitem
for each row
begin
update book
set remain=remain+1
where book.bookid=old.bookid
end
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
无论我在程序里里面加不加分号都是这样。。。。
如果把
update book
set remain=remain+1
where book.bookid=old.bookid
去掉就没报错。。。
------解决方案--------------------
- SQL code
DELIMITER |create trigger bookreturn before delete on borrowitemfor each rowbeginupdate bookset remain=remain+1where book.bookid=old.bookid;end| DELIMITER ;相关文章
相关视频
上一篇: php获取客户端网卡mac物理地址
推荐阅读
-
php+AJAX传送中文会导致乱码的问题的解决方法
-
利用php实现禁用IE和火狐的缓存问题
-
有关mysql中sql的执行顺序的小问题
-
关于PHP5.6+版本“No input file specified”问题的解决
-
对有insert触发器表取IDENTITY值时发现的问题
-
PHP的foreach中使用引用时需要注意的一个问题和解决方法
-
ECshop 迁移到 PHP7版本时遇到的兼容性问题
-
WampServer搭建php环境时遇到的问题汇总
-
PHP中遇到的时区问题解决方法
-
解决php的“It is not safe to rely on the system’s timezone settings”问题