sqlserver replace函數 批量替換資料庫中指定欄位內指定字串參考方法

來源:互聯網
上載者:User
文法
REPLACE ( 'string_e­xpression1' , 'string_e­xpression2' , 'string_e­xpression3' )
參數說明
'string_e­xpression1'
待搜尋的字串運算式。string_e­xpression1 可以是字元資料或位元據。
'string_e­xpression2'
待尋找的字串運算式。string_e­xpression2 可以是字元資料或位元據。
'string_e­xpression3'
替換用的字串運算式。string_e­xpression3 可以是字元資料或位元據。

通俗理解即格式為:
Update 表名 SET 要替換的列=REPLACE(要替換的列,被替換的字元,替換後的字元)
樣本SQL語句:
Update tableName SET columeName = REPLACE(columeName, 'a', 'b')

但是值得注意的一點是,SQL Server有 replace函數,可以直接使用;Access資料庫的replace函數只能在Access環境下用,不能用在Jet SQL中,所以對ASP沒用,在ASP中調用該函數會提示錯誤:運算式中 'REPLACE' 函數未定義。在Asp中可以寫一個函數實現該功能。
樣本函數:
複製代碼 代碼如下:
function replace(title)
{
replace(title,'aaa','bbbb')
return(title)
}
bbb=replace(title)
update ..... set title='"&bbb&"'

ASP+access批量替換指定字元參考代碼:
複製代碼 代碼如下:
<%
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath("資料庫名.mdb")
Set rs = Server.Createobject("ADODB.Recordset")
sql="Select * from [表名]"
rs.open sql,conn,1,3
while not rs.eof
rs("欄位名")=replace(rs("欄位名"),"被替換的字元","替換為的字元")
rs.update
rs.movenext
wend
rs.close
set rs=nothing
conn.close
set conn=nothing
%>


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.