テーブルitems
とそのitem_name
中に列があり、列にある特定のテキストを置き換えたいと思います。たとえば、テーブルitems
には次のものが含まれています。
スチールソード
ブロズネソード
ゴールドソード
Then I would like to replace only the Sword
string to Axe
for all items at once. I've tried to use the MySQL's REPLACE()
function, but it doesn't work for some reason...
If it's possible, how can I replace that?