Which statement should you use to create the stored procedure?

You need to create a stored procedure that passes in a person’s name and age.
Which statement should you use to create the stored procedure?

You need to create a stored procedure that passes in a person’s name and age.
Which statement should you use to create the stored procedure?

A.
Option A

B.
Option B

C.
Option C

D.
Option D



Leave a Reply 4

Your email address will not be published. Required fields are marked *


Ralph

Ralph

given the syntax of CREATE PROCEDURE it should be B as nvarchar in C stores unicode which really isn’t applicable to a name
https://technet.microsoft.com/en-us/library/ms187926(v=sql.105).aspx

Ben Richards

Ben Richards

It would not be B unless you want to store only a single character as the username. The type “nvarchar” is fine for a username since it supports UTF-8 encoded characters.

Nikesh

Nikesh

Answer is C