我有两个使用相同代码的 SQL 服务器数据库。
我收到以下错误:
Error when executing tsp_parse_str_int at line 26. Error message: Conversion failed when converting the nvarchar value '1000 ' to data type int.
如果您注意到有一个前导空格,但是在我的代码中,我将在转换之前删除空格!
SET @temp = (select replace(@temp, ' ', ''))
SET @projid = cast(@temp as int)
谢谢,布鲁斯