Revising the Select Query II

Sort by

recency

|

683 Discussions

|

  • + 0 comments

    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);

  • + 0 comments

    The problem is DB, instead of it switch to MySQL.

  • + 0 comments

    For MySQL Platform

    SELECT name FROM city
    WHERE countrycode = "USA" and population > 120000;
    
  • + 1 comment

    its giving errors ive tried many ways to give but its notmatching can anyone help??

  • + 0 comments
    SELECT NAME FROM CITY
    WHERE COUNTRYCODE='USA' AND POPULATION >120000