(mysql + C# .net コネクタを使用)
ケース:
table1 入力:
item_id| long_name |short_name
---------------------------------------------
56763 |MY NEW YORK 34 the great |
76878 |in the paris was really..|
table1 出力:
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 を計算します
TRUNCATE+INSERT INTO の代わりに UPDATE を使用してどのように行うことができますか (実際のテーブルには、行ごとに個別の動的な値を持つ 100,000 行を超える行があります)。