mysql 向字段添加数据或者删除数据
millet_handsome 人气:11 UPDATE table SET cids = CONCAT(cids , ',12') where id=id //向字段添加数据 2 //因为要用逗号分隔 所以在在前面加了一个逗号 3 4 UPDATE table SET cids = replace(cids , ',12' , '') where id=id //从字段中删除数据 5 //只要把想要删除的数据替换为空就可以了
加载全部内容
1 UPDATE table SET cids = CONCAT(cids , ',12') where id=id //向字段添加数据 2 //因为要用逗号分隔 所以在在前面加了一个逗号 3 4 UPDATE table SET cids = replace(cids , ',12' , '') where id=id //从字段中删除数据 5 //只要把想要删除的数据替换为空就可以了
加载全部内容