automated commit by check50 [check50=True]

This commit is contained in:
daviddoji
2026-04-21 09:29:46 +02:00
parent 2534454115
commit 0afacd78af
2 changed files with 6 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
At what type of address did the Lost Letter end up?: Residential
At what address did the Lost Letter end up?: 2 Finnigan Street
At what type of address did the Devious Delivery end up?: Residential
At what type of address did the Devious Delivery end up?: Police station
What were the contents of the Devious Delivery?: Duck debugger
What are the contents of the Forgotten Gift?:

View File

@@ -13,8 +13,11 @@ SELECT * FROM "packages" WHERE "from_address_id" = 432 AND "to_address_id" = 854
-- Get the delivery address of the parcel with missing "from_address_id"
SELECT * FROM "packages" WHERE "from_address_id" IS NULL;
-- Get info about the given address
SELECT * FROM "addresses" WHERE "id" = 50;
-- Get info about the package
SELECT * FROM "scans" WHERE "package_id" = 5098;
-- Get info about where the parcel ended up
SELECT * FROM "addresses" WHERE "id" = 348;
-- *** The Forgotten Gift ***