mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-07-16 09:37:23 +00:00
20 lines
267 B
SQL
20 lines
267 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;
|