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.
Revising the Select Query II
Revising the Select Query II
Sort by
recency
|
684 Discussions
|
Please Login in order to post a comment
SELECT NAME FROM CITY WHERE COUNTRYCODE = 'USA' AND POPULATION > 120000 ORDER BY NAME;
The query is simple but here are the problems I faced the resolutions. 1. switch to MySQL 2. do not leave any blank lines, just 1 line of query 3. 12 is follwed by four zeros :) and i kept writing 12000 4. keep the where clause within parenthesis select NAME from CITY where (COUNTRYCODE = 'USA' and POPULATION > 120000);
The problem is DB, instead of it switch to MySQL.
For MySQL Platform
its giving errors ive tried many ways to give but its notmatching can anyone help??