N
Nexus
hi, i'm trying to create a select store procedure which
will return a value. These are my codes
CREATE PROCEDURE test
@EmployeeID INT,
AS
SELECT EmployeeID, LastName from tblEmployees Where
EmployeeID = @EmployeeID
How do i write the codes such that it returns the value
of LastName?
will return a value. These are my codes
CREATE PROCEDURE test
@EmployeeID INT,
AS
SELECT EmployeeID, LastName from tblEmployees Where
EmployeeID = @EmployeeID
How do i write the codes such that it returns the value
of LastName?