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

 Posted by Bandi on 11/8/2013 | Category: Sql Server Interview questions | Views: 6296 | Points: 40
Select from following answers:
  1. EXECUTE USP_MyProc N'Bandi', N'Chandu';
  2. Any of these
  3. EXECUTE USP_MyProc @FirstName = N'Chandu', @LastName = N'Bandi';
  4. EXEC USP_MyProc @LastName = N'Bandi', @FirstName = N'Chandu';
  5. All Above

Show Correct Answer


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response