We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- SQL
- Basic Select
- Japanese Cities' Names
- Discussions
Japanese Cities' Names
Japanese Cities' Names
Sort by
recency
|
393 Discussions
|
Please Login in order to post a comment
SELECT * Name From CITY WHERE CountryCode = 'JPN'
Can anyone tell me why its showing error for the above code?
SELECT DSITRICT FROM CITY WHERE COUNTRYCODE='JPN';
SELECT NAME FROM CITY WHERE COUNTRYCODE='JPN';
100% CORRECT
SELECT * FROM CITY WHERE CountryCode = 'JPN';
QUERY IS CORRECT BUT STILL GETTING ERROR
SELECT * FROM CITY WHERE CountryCode = 'JPN';