欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

MySQL触发器 Update触发Insert失败

程序员文章站 2024-02-16 10:22:10
今天工作需要,想要实现将仅对状态更新的表进行历史记录显示,于是考虑在原表中建立触发器,将更新的内容同时写入另一张表 于是进行测试 --建立测试表crea...

今天工作需要,想要实现将仅对状态更新的表进行历史记录显示,于是考虑在原表中建立触发器,将更新的内容同时写入另一张表

于是进行测试

--建立测试表create table `triggletest_triggle` (
`id` int(11) not null,
`name` varchar(5) null default null,
primary key (`id`)
)
collate='latin1_swedish_ci'
engine=innodb 
--建立目标表
create table `triggletest` (
`seq` int(11) not null,
`id` int(11) not null,
`name` varchar(5) null default null,
primary key (`seq`),
index `id` (`id`)
)
collate='latin1_swedish_ci'
engine=innodb; 
---写入测试数据
insert into `triggletest_triggle` values(1,'a'); 
--建立触发器
drop trigger if exists test1
create trigger test1 
after update on triggletest_triggle
for each row
begin
insert into triggletest(id) values (new.id);
end 

执行触发器语句,报错,报错内容如下:

/* sql错误(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 'create trigger test1 
after update on triggletest_triggle
for each row
begin ' at line 2 */
---最终实现代码
drop trigger if exists test1;
create trigger test1 after update on test.triggletest_triggle for each row
begin
insert into triggletest(id,name) values (new.id,new.name);
end; 

分析,由于访问工具hedisql,导致无法正常创建触发器,相同语句,在hedisql中执行,报错,使用shell调用mysql,直接执行程序,成功。