adplus-dvertising
frame-decoration

Question

Below Code is procedure for dynamic SQL using ___________ parameter.
CREATE PROCEDURE GetArticle 
               @ArticleID INT 
        AS 
        SELECT ArticleTitle, ArticleBody FROM 
        Articles
        WHERE ArticleID = @ArticleID GO -

a.

input and output

b.

input

c.

output

d.

all of the mentioned

Answer: (b).input

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Below Code is procedure for dynamic SQL using ___________ parameter.