最近需要给数据库表某个字段加上前缀,我想当然的这样操作。




1
> update table set field = '-' + field;

很显然不对,应该使用 CONCAT 方法

1
> update table set field = CONCAT('-' , field);
03-17 04:09