Files
the-biergarten-app/DataLayer/scripts/03-crud/01-UserAccount/USP_GetAllUserAccounts.sql
2026-01-13 20:10:39 -05:00

18 lines
304 B
SQL

CREATE OR ALTER PROCEDURE usp_GetAllUserAccounts
AS
BEGIN
SET NOCOUNT ON;
SELECT UserAccountID,
Username,
FirstName,
LastName,
Email,
CreatedAt,
UpdatedAt,
DateOfBirth,
Timer
FROM dbo.UserAccount;
END;