Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
ストアドプロシージャを実行するには、EXECUTE または EXEC ステートメントを使用できます。
{ EXECUTE | EXEC } <stored_proc_name> { [ @ ] <input_name> = <expression> } [ , ... ] <expression> ::= | @ <parameter> | ? | <literal>
EXECUTE my_proc @second = 2, @first = 1, @third = 3;
EXECUTE my_proc second = @p1, first = @p2, third = @p3;
このページは役に立ちましたか?