Revising the Select Query II

Sort by

recency

|

640 Discussions

|

  • + 0 comments

    For MySQL

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

    select NAME from CITY Where CountryCode="USA" and population>120000;

  • + 0 comments

    IN ORACLE

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

  • + 0 comments

    It’s a great way to practice SQL selection and filtering techniques! matchbox9

  • + 0 comments

    -- MS SQL Server

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