Fix all bad SQL Get commands

This commit is contained in:
2025-07-18 19:58:17 -07:00
parent 73ea2ac284
commit 81c30460e0
3 changed files with 12 additions and 12 deletions
@@ -45,7 +45,7 @@ namespace BoredCareers.Services.DatabaseService {
INSERT INTO Employee
(ID,AccountID,CompanyID)
VALUES
(@ID,@AccountID,@CompanyID);
(@ID,@AccountID,@CompanyID)
ON DUPLICATE KEY UPDATE
AccountID = @AccountID,
CompanyID = @CompanyID;