串的UPDATE第一個字符我想更新的列的第一個字符在MYSQLMYSQL - 列
WHERE the format of the string is LIKE '1-%'
變化的第一個字符爲「0」。
我創造了這個例子,認爲我是在正確的軌道......
UPDATE products
SET
has_roundel = REPLACE(has_roundel, SUBSTRING(has_roundel, 0, 1),'0')
WHERE
has_roundel like '1-%';
確定,所以問題是什麼?錯誤? – Rohan
這聽起來好像你可能試圖操縱嚴重的非規格化數據... – eggyal