Trigger hjælp.
Er der en der kunne hjælpe mig og fortælle mig hvad der er galt i nedenforstående kode.får denne besked når #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 13.
DELIMITER $$
CREATE TRIGGER ins_bf_Stats
BEFORE INSERT ON stats
FOR EACH ROW
BEGIN
UPDATE totals SET Value=Value+1 WHERE Name='Kills';
UPDATE users SET XMoney=XMoney+(3-2), Points=Points+1, Exp=Exp+1
WHERE ID='1';
UPDATE users SET XMoney=XMoney-'1', Points = Points+1 WHERE ID='2';
END$$
på forhånd tak.