From 0afacd78af080bfbf3ad1480ca52061f063a458b Mon Sep 17 00:00:00 2001 From: daviddoji Date: Tue, 21 Apr 2026 09:29:46 +0200 Subject: [PATCH] automated commit by check50 [check50=True] --- answers.txt | 2 +- log.sql | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/answers.txt b/answers.txt index 7db9dff..63a56f0 100644 --- a/answers.txt +++ b/answers.txt @@ -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?: diff --git a/log.sql b/log.sql index c806405..9f4a9c0 100644 --- a/log.sql +++ b/log.sql @@ -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 ***