We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Revising the Select Query I
Revising the Select Query I
Sort by
recency
|
850 Discussions
|
Please Login in order to post a comment
Qu CREATE TABLE table_name (column1 datatype, column2 datatype
SELECT * FROM CITY WHERE CountryCode = 'USA' AND population > 100000;
For MySQL
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:
SELECT * FROM CITY WHERE POPULATION> 100000 AND COUNTRYCODE='USA';