HackerRank: [SQL Basic Select] (1/20) REVISING THE SELECT QUERY - I | Filtering in SQL

HackerRank: [Basic Select - 1/20] Revising the Select Query - I | Filtering in SQL
I started studying SQL from a very famous site - HackerRank. Here I will try to provide multiple approaches & solutions to the same problem. It will help you learn and understand SQL in a better way.

Please make use of my blog posts for learning purpose only and feel free to ask your questions in the comment box below in case of any doubt.


SQL Problem Statement:

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:

Table: CITY
Table: CITY




Sample data in Table (CITY):
ID NAME COUNTRYCODE DISTRICT POPULATION
6 Rotterdam NLD Zuid-Holland 593321
3878 Scottsdale USA Arizona 202705
3965 Corona USA California 124966
3973 Concord USA California 121780
3977 Cedar Rapids USA Iowa 120758
3982 Coral Springs USA Florida 117549
4054 Fairfield USA California 92256
4058 Boulder USA Colorado 91238
4061 Fall River USA Massachusetts 90555




Solution (MySQL Query):
SELECT * FROM CITY
WHERE POPULATION > 100000
AND COUNTRYCODE = "USA";

Sample Output:
3878 Scottsdale USA Arizona 202705
3965 Corona USA California 124966
3973 Concord USA California 121780
3977 Cedar Rapids USA Iowa 120758
3982 Coral Springs USA Florida 117549




--------------------------------------------------------------------------------
Click here to see solutions for all Machine Learning Coursera Assignments.
&
Click here to see more codes for Raspberry Pi 3 and similar Family.
&
Click here to see more codes for NodeMCU ESP8266 and similar Family.
&
Click here to see more codes for Arduino Mega (ATMega 2560) and similar Family.
Feel free to ask doubts in the comment section. I will try my best to answer it.
If you find this helpful by any mean like, comment and share the post.
This is the simplest way to encourage me to keep doing such work.

Thanks & Regards,
-Akshay P Daga
إرسال تعليق (0)
أحدث أقدم