You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
PortfolioLink/database/Auth.sql

6 lines
199 B

-- Get a user password hash and ID
SELECT PasswordHash, UserID FROM Users
WHERE Email = 'glott@leafnow.com';
-- If Successful, get their authlevels
SELECT AuthLevelID FROM Auths
WHERE UserID = 1