Revising the Select Query II

Sort by

recency

|

628 Discussions

|

  • + 0 comments

    ngoccth_SQL SERVER: SELECT [name] FROM CITY WHERE CountryCode = 'USA' AND Population > 120000

  • + 0 comments

    select Name from city where Countrycode='USA' and Population>120000;

  • + 0 comments

    select NAME from CITY where COUNTRYCODE = 'USA' and POPULATION > 120000;

  • + 0 comments

    Here is the response

    SELECT NAME FROM CITY WHERE COUNTRYCODE = 'USA' AND POPULATION > 120000;

    This exaclty remebers me of my data based website, which I developed a few months ago. So much fun while developing such data base projects:

  • + 0 comments

    SELECT NAME FROM CITY WHERE population > 120000 AND countrycode = 'USA'