I'm doing a database about attractions in TN, here are my tables
I want to find the number of attractions and the cities name for any given city
And I want to list the name and attractions for a given city How would I go about doing that?
I tries this for the second one but it did not work
SELECT attractions.attraction_Name, Cities.city_Name FROM Cities INNER JOIN attractions WHERE city_ID=1
Any suggestions?
This is what I get