從數據庫狀態明智的城市找出全國明智所有國家和使用連接找出全國明智所有國家和使用連接
我在數據庫,即國家的三個表從數據庫狀態智慧城市,州,市 我使用主鍵和外鍵給它們之間的映射。 我想要特定的「印度」國家和相關國家的所有州和城市......我該怎麼辦? 在這裏,我給我的代碼...這我created..Give我任何其他建議
select countries.name as country,
states.name as state,
cities.name as city
from states inner join cities
on states.id = cities.state_id
inner join countries
WHERE countries.name='India';
看起來你錯過了國家和州之間的連接條件。熟悉你對州和城市的看法。 – mikeyq6