我正在嘗試編寫一個觸發器來檢查表A是否存在任何插入或更新記錄,並將使用新記錄更新我的表B但出現錯誤:錯誤代碼:1064.您的SQL語法有錯誤;檢查與您的MySQL服務器版本相對應的手冊以使用正確的語法
錯誤代碼:1064.您的SQL語法錯誤;檢查對應於你的MySQL服務器版本的手冊正確的語法使用
下面是我的表:
create table A(count int, trigger_name varchar(25));
create table B(trigger_name varchar(25), time_created Timestamp);
這裏是我的觸發器:
create trigger record_after_insert after insert on A for each row
Begin
insert into B values (NEW.trigger_name, sysdate());
End;
我使用MySQL版本5.7.13。提前致謝。
那麼,你檢查手冊? – dfundako