what query can increase the statistics of all items?
I used this but it gave me a syntax error
UPDATE `Item_template` SET stat_value1 = (stat_value1 * 30) WHERE `Name` LIKE '%Wrathful%';
UPDATE `Item_template` SET stat_value2 = (stat_value2 * 30) WHERE `Name` LIKE '%Wrathful%';
UPDATE...