17 05 2023

MYSQL在一个字段值后面加字符串,如下:

  brand 表名

  img 字段名

  update brand SET img= '/upload' || card; (postgreSQL 用 || 来连贯字符串)

  MySQL连贯字符串不能利用加号(+),而利用concat。

  比方在aa表的name字段前加字符'x',利用:

  update brand set img=concat('/upload/01/',title,'.png')

延伸阅读
    发表评论