Which of the following would be a correct way to call the stored procedure MyProc?

 Posted by Bandi on 7/30/2014 | Category: Sql Server Interview questions | Views: 1944 | Points: 40
Select from following answers:
  1. EXECUTE MyProc N'Ackerman', N'Pilar';
  2. EXECUTE MyProc @FirstName = N'Pilar', @LastName = N'Ackerman';
  3. EXEC MyProc @LastName = N'Ackerman', @FirstName = N'Pilar';
  4. Any of these
  5. All Above

Show Correct Answer


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response