首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

参数数据类型 text 对于 replace 函数的参数 1 无效解决办法

2013-01-27 
参数数据类型 text 对于 replace 函数的参数 1 无效REPLACE(ska.Answer,Title,font stylecolor:Red

参数数据类型 text 对于 replace 函数的参数 1 无效

REPLACE(ska.Answer,Title,'<font style="color:Red;" >'+Title+'</font>') AS Answer2


执行报错如题 ,应该如何修改?
[解决办法]
REPLACE(ska.Answer,Title,concat('<font style="color:Red;" >',Title,'</font>')) AS Answer2
 

[解决办法]

REPLACE(ska.Answer,Title,'<font style="color:Red;" >'+Title+'</font>') AS Answer2
楼主你这句成了用'<font style="color:Red;" >'+Title+'</font>'来替代answer中的title列了,是不对的,你先把你想要做的事情说清楚

热点排行