Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
EXEC [dbo].[SP] @Param = ( SELECT COUNT(id) FROM TABLE )
エラーが発生するので、次善の策は何ですか、または何が間違っていますか?
Declare Setなどを使用せずに
Declare
Set
ストアドプロシージャを実行する前に設定しますか?
SET @Para1 = (SELECT COUNT(id) FROM TABLE) EXEC [dbo].[SP] @Param = @Para1