Multiple UDFs may be called with one statement;
A single stored procedure is called with one statement
A single SQL statement can call multiple UDFs.
A single SQL statement can call only one stored procedure.
https://docs.snowflake.com/en/developer-guide/stored-procedures-vs-udfs
Multiple UDFs May Be Called With One Statement; a Single Stored Procedure Is Called With One Statement
It is true that a single executable statement can call multiple UDFs, but it is also possible to call multiple stored procedures in a single executable statement, as long as they are called in separate statements.
CALL proc1();
CALL proc2();
so i think it can be option C
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Rameez1
4 months, 3 weeks ago[Removed]
1 year, 1 month agosinghks
1 year, 3 months agoJG1984
1 year, 2 months agoMarcusbraga
1 year, 3 months agoMultiCloudIronMan
1 year, 4 months ago