LoginSignup
1
1

More than 5 years have passed since last update.

MySQLでカラム内の文字列を置き換えて保存(update)

Last updated at Posted at 2015-04-02

やりたいこと

・SQLでカラム内の文字列置き換え

概要

特定のカラムで文字列置き換えを行う

コード

UPDATE `dbname`.`tblname` SET 対象カラム名=REPLACE(対象カラム名, "置換え前", "置換え後");
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1