这可能吗?
我想将字符串“ -large”附加到products
表中的第二行,其中列为clean_name
最佳答案
您可以在%
列上使用modulo operator(id
)
update products
set clean_name = concat(clean_name, '-large')
where id % 2 = 0
关于php - SQL在列名称为“clean_name”的第二行中附加“-large”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17139494/