Answer: With the help of EXEC in-built SQL Server function we can Execute any user defined Stored Procedures as well as system Stored Procedures.
Syntax is:-
Exec <procedure_name>(parameter_name1,parameter_name2,.....);
For above SP,we will write:-
Exec load_employee_details;
Press F5 to execute SP.
Asked In: Many Interviews |
Alert Moderator