mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-06-01 18:14:01 +00:00
20 lines
358 B
SQL
20 lines
358 B
SQL
CREATE OR ALTER PROCEDURE usp_GetUserAccountByEmail(
|
|
@Email VARCHAR(128)
|
|
)
|
|
AS
|
|
BEGIN
|
|
SET NOCOUNT ON;
|
|
|
|
SELECT UserAccountID,
|
|
Username,
|
|
FirstName,
|
|
LastName,
|
|
Email,
|
|
CreatedAt,
|
|
UpdatedAt,
|
|
DateOfBirth,
|
|
Timer
|
|
FROM dbo.UserAccount
|
|
WHERE Email = @Email;
|
|
END;
|