想在mids再加个20进去,要怎么做
update 你的表名 set mids = concat(mids, ",20") where rm_id=1不过我比较喜欢在程序里修改好字符串的值,然后再update进去
update table 你的表名 set mids = mids + ",16,17,18" where rm_id=1
update table 你的表名 set mids = mids + ",20" where rm_id=1