Sort by

recency

|

373 Discussions

|

  • + 0 comments

    MySQL:

    select* from CITY

    where COUNTRYCODE='USA' or COUNTRYCODE='NLD';

  • + 0 comments

    The question is weirdly formulated. Why is it not just "Query all entry in the table"?

  • + 0 comments

    For MySQL

    SELECT * FROM city;
    
  • + 1 comment

    SELECT ID,NAME,COUNTRYCODE,DISTRICT,POPULATION FROM CITY ;

  • + 0 comments

    -- MS SQL Server

    select * from CITY;