mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 02:39:03 +00:00
22 lines
371 B
SQL
22 lines
371 B
SQL
|
|
CREATE OR ALTER PROCEDURE usp_GetUserAccountByUsername
|
|
(
|
|
@Username VARCHAR(64)
|
|
)
|
|
AS
|
|
BEGIN
|
|
SET NOCOUNT ON;
|
|
|
|
SELECT UserAccountID,
|
|
Username,
|
|
FirstName,
|
|
LastName,
|
|
Email,
|
|
CreatedAt,
|
|
UpdatedAt,
|
|
DateOfBirth,
|
|
Timer
|
|
FROM dbo.UserAccount
|
|
WHERE Username = @Username;
|
|
END;
|