Argument data type text is invalid for argument 1 of replace function

update Table

set  content= replace(content,‘222‘,‘‘)

ERROR

更改为

update Table 
set content=replace(cast(content as varchar(8000)),‘22‘,‘‘)

原文地址:https://www.cnblogs.com/wilsons/p/11289110.html

时间: 2024-10-22 08:34:59

Argument data type text is invalid for argument 1 of replace function的相关文章

Cannot find an initializer for type '[(String)]' that accepts an argument list of type '(LazyForward

Swift编译错误: Cannot find an initializer for type '[(String)]' that accepts an argument list of type '(LazyForwardCollection<MapCollectionView<Dictionary<Int, String>, Int>>)' 错误代码: var dict = [1: "m", 2: "i", 3: "i

Format specifies type &#39;int&#39; but the argument has type &#39;struct node *&#39;

/Users/Rubert/IOS/iworkspace/LineList/LineList/main.c:205:37: Format specifies type 'int' but the argument has type 'struct node *' Format specifies type 'int' but the argument has type 'struct node *'

WebLogic下Argument(s) &quot;type&quot; can&#39;t be null.

启动项目出现Argument(s) "type" can't be null.异常.异常如下: java.lang.IllegalArgumentException: Argument(s) "type" can't be null. at com.sun.xml.bind.api.TypeReference.<init>(TypeReference.java:93) at com.sun.xml.ws.model.RuntimeModeler.proc

PHP 笔记一(systax/variables/echo/print/Data Type)

PHP stands for "Hypertext Preprocessor" ,it is a server scripting language. What Can PHP Do? PHP can generate dynamic page content PHP can create, open, read, write, delete, and close files on the server PHP can collect form data PHP can send an

salesforce 零基础开发入门学习(四)多表关联下的SOQL以及表字段Data type详解

建立好的数据表在数据库中查看有很多方式,本人目前采用以下两种方式查看数据表. 1.采用schema Builder查看表结构以及多表之间的关联关系,可以登录后点击setup在左侧搜索框输入schema Builder 或者build-->schema Builder进入: 2.采用force.com Explorer通过自己写查询语句来查询数据. 此链接为force.com Explorer的下载链接:  http://force-com-explorer-beta.software.infor

script中 type=&quot;text/html&quot; 有哪些作用

目录 1.type="text/html" 的作用 2.实际的应用(jsp页面中循环出一个table表格) 3.完整的代码 内容 1.作用 在script标签中定义一个可以被JS调用的代码块,但是该代码又不会再页面上显示. 2.实际的应用 <script type="text/html" id="textHtmlDemo"> <tr id="textHtmlDemo{id}" data-id="{i

html中去掉文本框(input type=&quot;text&quot;)的边框或只显示下边框

去掉: <input   type="text"   name="textfield"   style="border:0px;">只留下边框: <input type="text" style="BORDER-TOP-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-LEFT-STYLE: none; BORDER-BOTTOM-STYLE: solid&

JQuery获取input type=&quot;text&quot;中的值的各种方式

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>JQuery获取文本框的值</title> <meta http-equ

Linux C double linked for any data type

/************************************************************************** * Linux C double linked for any data type * 声明: * 提供一种双链接口,可以保存保存任何类型的数据. * * 2015-12-25 晴 深圳 南山平山村 曾剑锋 **********************************************************************