(使用 mysql + C# .net 连接器)
案子:
表1输入:
item_id| long_name |short_name
---------------------------------------------
56763 |MY NEW YORK 34 the great |
76878 |in the paris was really..|
表 1 输出:
item_id| long_name |short_name
---------------------------------------------
56763 |MY NEW YORK 34 the great |NEW YORK
76878 |in the paris was really..|paris
我通过 C# 代码计算 short_name
如何使用 UPDATE 而不是 TRUNCATE+INSERT INTO 来完成(实际表有超过 100,000 行,每行都有单独的动态值)?