1. Basic SQL Select Query of Hacker Rank.

Author: neptune | 20th-Apr-2022 | Views: 893
#SQL #Hackerrank

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:





Solution :

For this challenge, we must:

  1. Select all columns using the all-column wildcard (*).

  2. Restrict the selected rows using the WHERE clause so that only records satisfying both of the following two conditions are returned:

    • COUNTRYCODE is USA, meaning the cities are American.

    • POPULATION is greater than 100000.


Query :


SELECT

FROM CITY 

WHERE 

    COUNTRYCODE = 'USA' 

    AND POPULATION > 100000;


Output:



Hope you understand !!!

If you have any questions let me know in the comment section.





Related Blogs
5. Solution of Hacker Rank Weather Observation Station 8.
Author: neptune | 23rd-Jan-2023 | Views: 4434
#SQL #Hackerrank
Query the list of CITY names from STATION which have vowels (i.e., a, e, i, o, and u) as both their first and last characters. Your result cannot contain duplicates...

4. Solution of Hacker Rank Weather Observation Station 6.
Author: neptune | 23rd-Jan-2023 | Views: 3466
#SQL #Hackerrank
Query the list of CITY names starting with vowels (i.e., a, e, i, o, or u) from STATION. Your result cannot contain duplicates...

7.Solution of Hacker Rank The Report
Author: neptune | 23rd-Jan-2023 | Views: 3237
#SQL #Hackerrank
Problem Statement : generate a report containing three columns: Name, Grade and Mark. Ketty doesn't want the NAMES of those students who received a grade lower than 8...

3. Solution of Hacker Rank Weather Observation Station 4.
Author: neptune | 23rd-Jan-2023 | Views: 2374
#SQL #Hackerrank
Problem Statement : Find the difference between the total number of CITY entries in the table and the number of distinct CITY entries in the table...

The Blunder | Hackerrank
Author: neptune | 21st-Nov-2022 | Views: 2036
#SQL #Hackerrank
Write a query calculating the amount of error (i.e.: average monthly salaries), and round it up to the next integer...

6. Solution of Hacker Rank Employee Salaries.
Author: neptune | 23rd-Jan-2023 | Views: 1294
#SQL #Hackerrank
Problem Statement : Query that prints a list of employee names for employees in Employee having a salary greater than $2000 per month and experience less than 10 months...

The PADS | Hackerrank
Author: neptune | 21st-Nov-2022 | Views: 599
#SQL #Hackerrank
Problem Statement: Generate the following two result sets: 1. Query an alphabetically ordered list of all names in OCCUPATIONS, immediately followed by the first letter of each profession...

2. Solution of Hacker Rank Weather Observation Station 3.
Author: neptune | 23rd-Jan-2023 | Views: 573
#SQL #Hackerrank
Problem Statement : Query a list of CITY names from STATION for cities that have an even ID number. Print the results in any order, but exclude duplicates from the answer...

8.SQL Query to Count odd and even digits in a number
Author: neptune | 24th-Apr-2022 | Views: 414
#SQL #Hackerrank
Problem Statement : Write a query that counts odd and even digits in a number...

Create MySQL Database from Scratch
Author: neptune | 31st-Aug-2022 | Views: 345
#SQL
How to create a DB in MySQL Server from Scratch? Step1: Open MySQL Workbench or CMD Prompt...

30+ SQL Interview Questions
Author: neptune | 05th-Jan-2023 | Views: 251
#Interview #SQL
Data Definition Language (DDL) – It allows end-users to CREATE, ALTER, and DELETE database objects...

Top Earners | HackerRank
Author: neptune | 23rd-Nov-2022 | Views: 155
#SQL #Hackerrank
Write a query to find the maximum total earnings for all employees as well as the total number of employees who have maximum total earnings...

View More