Revising the Select Query II

  • + 0 comments

    MySQL

    • Method 1: SELECT Name From City Where CountryCode = 'USA' and Population > 120000;
    • Method 2: SELECT Name From City Where CountryCode = 'USA' && Population > 120000;