Challenges easy High Scores (SQL) 50 XP
Sql Challenge

High Scores (SQL)

A table scores(name TEXT, points INTEGER) is already loaded. Select the name of every player with 90 or more points, ordered by points descending.

Example 1

Input
CREATE TABLE scores (name TEXT, points INTEGER); INSERT INTO scores VALUES ('Ada', 95), ('Bob', 42), ('Cy', 90), ('Dee', 77);
Expected Output
Ada
Cy
solution.sql
Run the examples to test your code, then Submit to run all hidden tests.
🚀

Create a free account

Sign up free to run and submit solutions, earn points, and unlock badges.

Create Free Account

Already have one? Log in