Select from following answers:- EXECUTE USP_MyProc N'Bandi', N'Chandu';
- Any of these
- EXECUTE USP_MyProc @FirstName = N'Chandu', @LastName = N'Bandi';
- EXEC USP_MyProc @LastName = N'Bandi', @FirstName = N'Chandu';
- All Above
All of the above are the different ways to call a stored procedure in SQL server
Show Correct Answer
Asked In: Many Interviews |
Alert Moderator