I created this trigger:CREATE TRIGGER GensIncentivesON [Character]FOR UPDATE ASUPDATE [Character]SET [MULGensIncentives]=[MULGensIncentives]+100WHERE [cLevel]=400 AND Resets BETWEEN 1 AND 131GO
but when I do an sql query on 1 account the trigger runs on other accounts as well where it has already a cLevel=400,update Character set cLevel=400 where name='John'
Result:name MULGensIncentives cLevel ResetsJohn 100 400 10Paul 100 400 50Mary 100 400 20Mark 100 400 15Peter 100 400 11
What is the correct trigger code?