here is my code:
create trigger term_ost after update on `payments`
for each row
begin
UPDATE `current` s
INNER JOIN payments w ON w.id_thing = s.id_thing
INNER JOIN payments w ON w.id= s.id
SET s.`new_pay_date` = w.date;
end;
$$
It's not working.
I want it to set new date after there is new payment for thing which someone bought and change the last date that was in the field date with the new one from new_pay_date.
@EDIT
I am trying to change my trigger so it will update field "new_pay_date" from current after field date is insterted into payments.
Table current:
curr_cash
new_pay_date
id_person
id_thing
sum_of_things
Summary: When I add new data to payments (e.x. someone paid for thing), I want ot update his last payment time in table current. In "sum_of_things" it sums all the money the client paied.
@edit After this code:
CREATE TRIGGER term_ost AFTER INSERT ON `payments`
FOR EACH ROW
BEGIN
UPDATE `current`
SET s.`new_pay_date` = NEW.date
WHERE
s.id_thing = NEW.id
END;
there is error:
INSERT INTO `mydb`.`payments` (
`id` ,
`date` ,
`id_thing` ,
`thing_cost`
)
VALUES (
'12312312322', '2012-12-11 15:00:00', '1', '500'
)
MySQL comment:
#1054 - Unknown column 's.new_pay_date' in 'field list'
... :-(
INNER JOIN payments w ON w.id_thing = s.id_thing AND w.id = s.id_thing. – loko Dec 3 '12 at 13:56