对于 SQL Server 2008,我想@wfID
在文本中添加一个变量 ( ),如下所示:
DECLARE @wfID uniqueidentifier
SET @wfID = NEWID()
'<META http-equiv="Content-Type" content="text/html; " /> <br><input type="button"
value="" onclick="window.open("http://localhost/TestWeb2/Test_Look.aspx?Test_ID='
+ convert(nvarchar, @wfID)
+ '");" /></br>',
所以,我想@wfID
在文本中添加,但它总是说
数据类型 nvarchar 和 text 在 add 运算符中不兼容。
我尝试将所有内容都转换为 nvarchar,但后来我得到了这个:
将表达式转换为数据类型 nvarchar 时出现算术溢出错误。
有什么建议么?