sql語句批量修改

2022-02-16 07:07:58 字數 671 閱讀 4776

1樓:小游

update 表名

set c_method_name= lower(substring(replace(c_method_name,'process',''),1,1))+

substring(replace(c_method_name,'process',''),2,len(replace(c_method_name,'process','')))

--replace(c_method_name,'process','')用空值取代process

-- lower改小寫

--lower(substring(replace(c_method_name,'process',''),1,1))把取代後字串的第乙個字母改小寫

--再加上後面的字串

2樓:下揚州啊

update table set c_method_name =replace(c_method_name,'process','')

where c_method_name like 'process%'

update table set c_method_name =lower(substring(c_method_name,1,1))+substring(c_method_name,2,len(c_method_name))

在sql server,能用sql語句修改欄位名稱嗎

用sp rename儲存過程 a.重新命名表 下例將表 customers 重新命名為 custs。exec sp rename customers custs b.重新命名列 下例將表 customers 中的列 contact title 重新命名為 title。exec sp rename c...

php批量執行sql語句怎麼寫,如何在php中執行多條sql語句

php中利用陣列用mysql query批量執行sql語句。參考示例如下 思路 這裡採用乙個陣列.用explode 函式,將 query語句按照 炸開,然後迴圈執行即可 query delete from ecs goods attr where attr id 11 and goods id 22...

求MSSQL 表中的字段的批量修改語句

樓上諸位的語句執行起來會失敗的。當表名是數字或保留關鍵字的時候必須用方括號括起來才可以執行。update 456 set rq 2500 update 456 set rq 2500此語句適用rq字元型別為數字型別。update 456 set rq 2500 此語句使用rq字元型別為字元型。upd...