automated commit by check50 [check50=True]

This commit is contained in:
daviddoji
2026-04-21 09:50:25 +02:00
parent 1486f5520b
commit b664bc0bd1
2 changed files with 10 additions and 1 deletions

View File

@@ -6,4 +6,4 @@ At what type of address did the Devious Delivery end up?: Police station
What were the contents of the Devious Delivery?: Duck debugger What were the contents of the Devious Delivery?: Duck debugger
What are the contents of the Forgotten Gift?: Flowers What are the contents of the Forgotten Gift?: Flowers
Who has the Forgotten Gift?: 950 Brannon Harris Way Who has the Forgotten Gift?: Mikel

View File

@@ -30,5 +30,14 @@ SELECT * FROM "addresses" WHERE "address" = "728 Maple Place";
-- Get package id and content ==> id 9523, contents Flowers -- Get package id and content ==> id 9523, contents Flowers
SELECT * FROM "packages" WHERE "to_address_id" = 4983; SELECT * FROM "packages" WHERE "to_address_id" = 4983;
-- Confirm address of sender ==> 109 Tileston Street
SELECT * FROM "addresses" WHERE "id" = 9873;
-- Who has the parcel
SELECT * FROM "scans" WHERE "package_id" = 9523;
-- Get the address of who pick up the parcel ==> a warehouse in 950 Brannon Harris Way -- Get the address of who pick up the parcel ==> a warehouse in 950 Brannon Harris Way
SELECT * FROM "addresses" WHERE "id" = 7432; SELECT * FROM "addresses" WHERE "id" = 7432;
-- Get name of driver who pick up the parcel
SELECT * FROM "drivers" WHERE "id" = 17;