So, I\'ve got this below implemented in one of my stored procedures. And if they have less points as specified it works correctly but if they have normal points (not less) and t
If I'm understanding this correctly you could modify the ELSE.
Change From:
ELSE @NewPoint = @NewPoint
Change To:
ELSE return
This will abort the script and no updates will occur.