sql批量更新单字段值并拼接某个特定的值

update 表名 set 字段 =CONCAT(left(字段,length(字段) -6),‘2022-’,right(字段,6)) where year = 2022

你可能感兴趣的:(数据库,sql)