批量替换数据库中指定字段内指定字符串代码示例:
<% 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 %> |
mssql的就比较简单 可以直接使用
格式为: Update 表名 SET 要替换(的)列=REPLACE(要替换(的)列,被替换(的)字符,替换后(的)字符) 示例SQL语句:
Update tableName SET columeName = REPLACE(columeName, ’a’, ’b’) |
|