同じコードを使用する 2 つの 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)
ありがとう、ブルース