aa98988db1
Added a way to communicate with database
11 lines
185 B
Transact-SQL
11 lines
185 B
Transact-SQL
CREATE PROCEDURE [dbo].[spUserLookup]
|
|
@Id nvarchar(128)
|
|
AS
|
|
BEGIN
|
|
SET NOCOUNT ON;
|
|
|
|
SELECT Id, FirstName, LastName, EmailAddress, CreatedDate
|
|
from [dbo].[User]
|
|
where Id = @Id
|
|
END
|