SQL query to prepend prefix to existing value in a field

后端 未结 4 740
夕颜
夕颜 2021-01-31 04:12

I have searched and searched for an answer to this, and I think this must be child\'s play for anyone who KNOWS SQL (which is not me).

I want to insert a prefix to the v

4条回答
  •  伪装坚强ぢ
    2021-01-31 04:22

    UPDATE jos_content SET title = CONCAT('Mr. ', title) WHERE 1

    Before testing the query do make a database backup.

提交回复
热议问题