我想從表中複製數據:oc_product_description列:名稱到表:Et列:標題,但我只需要複製左側的125個字符,因爲我有限制多少我可以擁有的角色。 我的想法是這樣的,但它不工作插入,內部連接和限制字符在一個
Insert into Et (title)
INNER JOIN oc_product_description
ON oc_product_description.product_id = Et.product_id;
Select left(col, 125) col
From oc_product_description.name;
任何幫助將不勝感激。
我這個解決它:更新Et INNER JOIN oc_product_description ON oc_product_description.product_id = Et.product_id Set Et.title = SUBSTRING(oc_product_description.name,1,125); – Schwann