i have a little problem with my trigger. i created a trigger:
BEGIN
IF((SELECT `Wert`
FROM parameter_history
WHERE `BusNr` = NEW.BusNr AND `MesswertNr` = NEW.MesswertNr
ORDER BY `Timestamp` DESC LIMIT 1) != NEW.Value)
THEN
INSERT INTO parameter_history (`BusNr`, `MesswertNr`, `Value`)
VALUES (NEW.BusNr, NEW.MesswertNr, NEW.Value);
END IF;
END
The event of the trigger is after an update.
if there is already a New.Value it works really good.
but if there is no New.Value in my database it doesn't work and i don't know why.
The problem is, that i can`t get a value back from "NEW.Value" when there is actually no entry in my table.
With a MySQL-Programm i got "0 Rows found" and i want to fix this problem.
Can anybody help me?
kind regards

CREATE TRIGGER ...– ypercube Sep 11 '12 at 6:39SHOW CREATE TRIGGER trigger_namecommand to get whole trigger code. – Devart Sep 11 '12 at 8:21