Skip to content

Latest commit

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..

README.md

A special-purpose language designed for managing data held in a relational database.

NamePreviewCodeDifficulty
Revising the Select Query IQuery the data for all American cities with populations larger than 100,000.SQLEasy
Revising the Select Query IIQuery the city names for all American cities with populations larger than 120,000.SQLEasy
Select AllQuery all columns for every row in a table.SQLEasy
Select By IDQuery the details of the city with ID 1661.SQLEasy
Japanese Cities' AttributesQuery the attributes of all the cities in Japan.SQLEasy
Japanese Cities' NamesIn this challenge, you will query a list of all the Japanese cities' names.SQLEasy
Weather Observation Station 1Write a query to print the CITY and STATE for each attribute in the STATION table.SQLEasy
Weather Observation Station 3Query a list of unique CITY names with even ID numbers.SQLEasy
Weather Observation Station 4Find the number of duplicate CITY names in STATION.SQLEasy
Weather Observation Station 5Write a query to print the shortest and longest length city name along with the length of the city names.SQLEasy
Weather Observation Station 6Query a list of CITY names beginning with vowels (a, e, i, o, u).SQLEasy
Weather Observation Station 7Query the list of CITY names ending with vowels (a, e, i, o, u) from STATION.SQLEasy
Weather Observation Station 8Query CITY names that start AND end with vowels.SQLEasy
Weather Observation Station 9Query an alphabetically ordered list of CITY names not starting with vowels.SQLEasy
Weather Observation Station 10Query a list of CITY names not ending in vowels.SQLEasy
Weather Observation Station 11Query a list of CITY names not starting or ending with vowels.SQLEasy
Weather Observation Station 12Query an alphabetically ordered list of CITY names not starting and ending with vowels.SQLEasy
Higher Than 75 MarksQuery the names of students scoring higher than 75 Marks. Sort the output by the LAST three characters of each name.SQLEasy
Employee NamesPrint employee names.SQLEasy
Employee SalariesPrint the names of employees who earn more than $2000 per month and have worked at the company for less than 10 months.SQLEasy
NamePreviewCodeDifficulty
Type of TriangleQuery a triangle's type based on its side lengths.SQLEasy
The PADSQuery the name and abbreviated occupation for each person in OCCUPATIONS.SQLMedium
OccupationsPivot the Occupation column so the Name of each person in OCCUPATIONS is displayed underneath their respective Occupation.SQLMedium