I completely don't recommend this!!! but I found it a good challenge. I would highly recommend going with Sean's recommendation and do this with keys.
Anyway, this query will give you exactly what you asked for without changing your schema (it also assumes your data is exactly represented).
Example: http://www.sqlfiddle.com/#!3/a0486/8
Select Distinct
case when town = 'Wilmington' Then NULL else Name end as Name,
case when town = 'Wilmington' Then NULL else Age end as Age,
Country,
Town
FROM People, Places
Where
(Name = 'Anne' AND Town = 'Berlin')
OR (Name = 'Dave' AND Town = 'Kyoto')
OR (Name = 'Mike' AND Town = 'Lisbon')
OR (Town = 'Wilmington')
Order By Country Asc
EDIT
To complete my answer and to provide a more appropriate solution, I recommend you add a PlaceID to both tables and then Left join on it.
Example: http://www.sqlfiddle.com/#!3/d5ee8/3
Create Table People(
Name varchar(255),
Age int,
PlaceID int
)
Create Table Places(
PlaceID int,
Country varchar(255),
Town varchar(255)
)
Insert Into People Values ('Dave', 43, 2)
Insert Into People Values ('Anne', 25, 1)
Insert Into People Values ('Mike', 58, 3)
Insert Into Places Values (1, 'Ger', 'Berlin')
Insert Into Places Values (2, 'Jpn', 'Kyoto')
Insert Into Places Values (3, 'Por', 'Lisbon')
Insert Into Places Values (4, 'USA', 'Wilmington')
Select
Name, Age, Country, Town
FROM
Places
Left Join People On Places.PlaceID = People.PlaceID