ネストされた SELECT ステートメントを使用して INSERT ステートメントを実行しようとしています。データベース フィールドは両方ともint
型です。
私の声明:
energy_command = New SqlCommand("INSERT INTO energy ([ApplicationID], [usage], [policy], [audit], [lighting], [over_lighting], [controls], [turn_off], [energy_star], [weatherize],[thermostat], [natural_light], [air], [renewable_assessment], [on_site_renewable], [HVAC],[renewable_power], [efficient_enroll], [efficient_attain], [other]) " &
"VALUES ('(SELECT ApplicationID FROM general where Business_Name = """ & txtName.Text & """)', '" & track_usage & "', '" & develop_strategy & "', '" & perform_audit & "', '" & replace_bulbs & "', '" & reduce_lighting & "', '" & lighting_controls & "', '" & not_in_use_policy & "', '" & energy_star & "', '" & weatherize & "', '" & program_thermo & "', '" & natural_light & "', '" & air_quality & "', '" & site_assessment & "', '" & renewable_power & "', '" & HVAC & "', '" & renewable_energy & "', '" & energy_programs & "', '" & energy_certification & "', '" & energy_other & "')", connection)`
私のエラー:
System.Data.SqlClient.SqlException: varchar 値 '(SELECT ApplicationID FROM general where Business_Name = "a")' をデータ型 int に変換するときに変換に失敗しました。
SELECT
私の唯一の考えは、ステートメント全体をINT
フィールドに挿入しようとしているということです。私が間違っている?どうすればこれを修正できますか?