次のトリガーを作成しようとしています:
DELIMITER $$
CREATE trigger insert_processor
BEFORE INSERT ON tbl
FOR EACH ROW BEGIN
set new.val = trim(new.val);
set new.val2 = upper(new.val);
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 '' at line 8
理由は何ですか?
MySQL サーバーのバージョン:5.1.40-community
クライアント:phpMyAdmin 3.3.8