automated commit by check50 [check50=True]

This commit is contained in:
daviddoji
2026-04-21 09:13:07 +02:00
commit e71feb7fb0
2 changed files with 24 additions and 0 deletions

15
log.sql Normal file
View File

@@ -0,0 +1,15 @@
-- *** The Lost Letter ***
-- Get the address id of sender ==> id 432, type Residential
SELECT * from "addresses" WHERE "address" = "900 Somerville Avenue";
-- Get the address id of receiver ==> id 854, type Residential
SELECT * from "addresses" WHERE "address" LIKE "2 Fin%Street";
-- Get the id and contents from the parcel send by sender to receiver
SELECT * FROM "packages" WHERE "from_address_id" = 432 and "to_address_id" = 854;
-- *** The Devious Delivery ***
-- *** The Forgotten Gift ***