sql語句批量修改字段

1、 根據條件去掉指定記錄的前2個字符 update 表名 set 字段名=REPLACE(字段名,字段名,SUBSTR(字段名,1,2)) where 條件; 簡單例子: update test set name=REPLACE(name,name,SUBSTR(name,1,2)) where number=1 SUBSTR函數的簡單用法 substr(字符串,截取開始位置,截取長度)//返回
相關文章
相關標籤/搜索