create trigger ins_notification after insert on transaction_detail
for each row
Begin
insert into sell_notifications(user_id, product_id, quantity)
values(new.transaction_id , new.product_id, new.quantity);
End;
Can any one see where's the problem? :(