0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

SSMSにて、登録されているデータを別のデータ置き換えたい

Posted at

【やりたいこと】

  BASEBALLテーブルにセリーグ列があるとする
  以下の[現在のセリーグ列]から[新しいセリーグ列]のデータに置き替えたい
  [現在のセリーグ列]
   巨人:阪神:DeNA:広島:ヤクルト:日ハム:中日
    ↓↓↓↓↓
  [新しいセリーグ列]
   巨人:阪神:DeNA:広島:ヤクルト:中日

【方法】

UPDATE BASEBALL
SET セリーグ列 = REPLACE(セリーグ列, '日ハム:', '')
WHERE セリーグ列 LIKE '%日ハム:%';
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?