語法
REPLACE ( 'string_expression1' , 'string_expression2' , 'string_expression3' )
參數(shù)說明
'string_expression1'
待搜索的字符串表達式。string_expression1 可以是字符數(shù)據(jù)或二進制數(shù)據(jù)。
'string_expression2'
待查找的字符串表達式。string_expression2 可以是字符數(shù)據(jù)或二進制數(shù)據(jù)。
'string_expression3'
替換用的字符串表達式。string_expression3 可以是字符數(shù)據(jù)或二進制數(shù)據(jù)。
通俗理解即格式為:
Update 表名 SET 要替換的列=REPLACE(要替換的列,被替換的字符,替換后的字符)
示例SQL語句:
Update tableName SET columeName = REPLACE(columeName, 'a', 'b')
但是值得注意的一點是,SQL Server有 replace函數(shù),可以直接使用;Access數(shù)據(jù)庫的replace函數(shù)只能在Access環(huán)境下用,不能用在Jet SQL中,所以對ASP沒用,在ASP中調(diào)用該函數(shù)會提示錯誤:表達式中 'REPLACE' 函數(shù)未定義。在Asp中可以寫一個函數(shù)實現(xiàn)該功能。
示例函數(shù):
復(fù)制代碼 代碼如下:
function replace(title)
{
replace(title,'aaa','bbbb')
return(title)
}
bbb=replace(title)
update ..... set title='"bbb"'
ASP+access批量替換指定字符參考代碼:
復(fù)制代碼 代碼如下:
%
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" Server.MapPath("數(shù)據(jù)庫名.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
%>
您可能感興趣的文章:- sqlserver 批量數(shù)據(jù)替換助手V1.0版發(fā)布
- SqlServer中批量替換被插入的木馬記錄
- 批量替換sqlserver數(shù)據(jù)庫掛馬字段并防范sql注入攻擊的代碼
- sqlserver 中ntext字段的批量替換(updatetext的用法)
- SQL Server中對數(shù)據(jù)截取替換的方法詳解