0
我一直在努力工作在最後一個小時。我的大學教師給我這個問題,我不知道該怎麼做。在mysql中顯示來自不同表的結果
的問題是:
顯示所有縣在英國,其中已進行一個方向
這是數據庫和表:
CITY (Name, County, Country)
THEATRE (Name, City, County, Capacity)
SHOW (Title, Artist, Venue, Attendance)
這就是我的回答:
SELECT country from theatre
INNER JOIN show
ON theatre.name = show.venue
WHERE artist = 'one direction'
AND county=(
SELECT country FROM theatre
INNER JOIN city
ON theatre.city = city.name
WHERE city.country = 'UK'
)
我關閉了嗎?