Revising the Select Query I

Sort by

recency

|

850 Discussions

|

  • + 0 comments

    Qu CREATE TABLE table_name (column1 datatype, column2 datatype

  • + 0 comments

    SELECT * FROM CITY WHERE CountryCode = 'USA' AND population > 100000;

  • + 0 comments

    For MySQL

    SELECT * FROM city
    WHERE population > 100000 AND countrycode = "USA";
    
  • + 0 comments

    Query all columns for all American cities in the CITY table with populations larger than 100000. The CountryCode for America is USA.

    The CITY table is described as follows:

  • + 0 comments

    SELECT * FROM CITY WHERE POPULATION> 100000 AND COUNTRYCODE='USA';