Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 400 Bytes

SQL-Basics-Simple-DISTINCT.md

File metadata and controls

16 lines (12 loc) · 400 Bytes

For this challenge you need to create a simple DISTINCT statement, you want to find all the unique ages.

people table schema

  • id
  • name
  • age

select table schema

  • age (distinct)

NOTE: Your solution should use pure SQL. Ruby is used within the test cases to do the actual testing.

-- Create your SELECT statement here
SELECT DISTINCT(age) as age FROM people;