Created
February 11, 2021 18:10
-
-
Save alphamikle/353f5c7348e3bc3189a0c8888dc149ab to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ... | |
SELECT "User"."id" AS "User_id", "User"."name" AS "User_name", "User"."defaultPurseId" AS "User_defaultPurseId" | |
FROM "user" "User" | |
WHERE "User"."id" IN ($1) | |
START TRANSACTION | |
UPDATE "purse" | |
SET "balance" = $2 | |
WHERE "id" IN ($1) | |
COMMIT | |
SELECT "Purse"."id" AS "Purse_id", "Purse"."balance" AS "Purse_balance", "Purse"."userId" AS "Purse_userId" | |
FROM "purse" "Purse" | |
WHERE "Purse"."id" IN ($1) | |
START TRANSACTION | |
UPDATE "purse" | |
SET "balance" = $2 | |
WHERE "id" IN ($1) | |
COMMIT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment