実際には、次のような特殊文字を含む列名を持つ SQL Server テーブルを@#$$%Id%^$#
作成し、次のような値を挿入するための挿入クエリを作成しました。
Insert into MyTable ([@#$$%Id%^$#]) values (@@#$$%Id%^$#)
その後、パラメーター値を次のように渡します。
SqlCommand cmd = new SqlCommand (“Insert into MyTable ([@#$$%Id%^$#]) values (@@#$$%Id%^$#) ”);
cmd.Parameters.Add(new SqlParameter (“(@@#$$%Id%^$#”, ParameterValue))
このコードを実行した後、私は得ました
スカラー変数を宣言する必要があります @