数据类型 varchar 和 uniqueidentifier 在 add 运算符中不兼容
Posted youmingkuang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据类型 varchar 和 uniqueidentifier 在 add 运算符中不兼容相关的知识,希望对你有一定的参考价值。
select ‘<a href="/‘+a.id +‘" title="‘+ a.title +‘">‘+a.Title+‘</a>‘ from dbo.ticles a;
解决办法:
使用: cast ,
修改之后:
select ‘<a href="/‘+cast(a.Id as varchar(8000)) from dbo.ticles a;