1.update两列的值相加:
如果两列是整数则,update table set a=a+b where id=1;
如果两列有字符串则,update table set a=concat(a,b) where id=1;//如果用+代替concat,会有warning:truncated incorrect double value ‘ *‘;
2023-10-26 21:50:46
1.update两列的值相加:
如果两列是整数则,update table set a=a+b where id=1;
如果两列有字符串则,update table set a=concat(a,b) where id=1;//如果用+代替concat,会有warning:truncated incorrect double value ‘ *‘;