Can someone please help me with MySQL Trigger
Lets say I have two Tables
Table_Current
No (INT TYPE)
Name (VARCHAR TYPE)
Value (DECIMAL TYPE)
Table_Record
No (INT TYPE)
Name (VARCHAR TYPE)
Value (DECIMAL TYPE)
So what I want to achieve is that, I perform replace statements on Table.Current, and if the value of field 'Value' is smaller than that of the Value in Table.Record, I would like to update the Value of Table.Record,
Here is what I have as a trigger
DELIMITER $$
CREATE TRIGGER Mytrigger
AFTER INSERT ON Table_Current
FOR EACH ROW
BEGIN
DECLARE CB DECIMAL (6,3);
DECLARE OB DECIMAL (6,3);
OB = SELECT Value FROM Table_Record WHERE Name=NEW.Name;
CB = NEW.Value;
IF CB<OB THEN
UPDATE Table_Record SET Value = NEW.Value WHERE Name = NEW.Name;
END IF;
END $$
DELIMITER;