In the error console it displays :
Error Code: 1442. Can't update table 'warriors' in stored function/trigger because it is already used by statement which invoked this stored function/trigger.
This is my table :
This is the trigger creation statement:
create trigger power_update
after update on warriors
for each row update warriors
set power = (practise_hours * 100);
This is the statement to update the table
update warriors set practise_hours = 80 where id = 9;