Home > Database > Mysql Tutorial > SQL中函数 replace 的参数1的数据类型ntext无效的解决方法

SQL中函数 replace 的参数1的数据类型ntext无效的解决方法

WBOY
Release: 2016-06-07 18:00:19
Original
1427 people have browsed it

SQL中函数 replace 的参数 1 的数据类型 ntext 无效。找了半天找到了解决办法

今天将一个ACC的数据库转换成ms-sql以后发现在使用replace替换语句的时候出现:
SQL中函数 replace 的参数 1 的数据类型 ntext 无效。找了半天找到了解决办法:
因为ntext需要转化下
用如下语句即可解决:

代码如下:
UPDATE 表 SET 字段=REPLACE(cast(字段 AS varchar(8000)),'被替换的内容','将要替换成的内容')

varchar(8000)是字段类型。8000是个很猛的字段,可以根据自己的实际情况改动!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template