mysqlクエリ置換文
465 ワード
UPDATE `table_name` SET `field_name` = replace (`field_name`,'from_str','to_str') WHERE `field_name` LIKE '%from_str%'
説明:
table_name——表の名前
field_name-フィールド名
from_str-置換する文字列
to_str-置換文字列
たとえば
Productsテーブルのフィールドをproducts_descriptionの文字cheapをdiscountに置き換える
説明:
table_name——表の名前
field_name-フィールド名
from_str-置換する文字列
to_str-置換文字列
たとえば
UPDATE `products` SET `products_description` = replace (`products_description`,'cheap','discount');
Productsテーブルのフィールドをproducts_descriptionの文字cheapをdiscountに置き換える