Question: What is the name of the default instance installed by SQL Server 2008 Express in your computer?
A
B
C
D
sqlinst
B
sqlcmd
C
sqlexpress
D
sqldef
Note: Not available
CREATE PROCEDURE Person.GetEmployees @LastName nvarchar(50), @FirstName nvarchar(50) AS SET NOCOUNT ON SELECT FirstName, LastName, JobTitle, Department FROM Person.EmployeeDepartment WHERE FirstName = @FirstName AND LastName = @LastName GOWhich of the following is a valid code to execute the GetEmployees stored procedure?