Skip to content

Latest commit

 

History

History
45 lines (31 loc) · 708 Bytes

180_books_with_null_ratings.md

File metadata and controls

45 lines (31 loc) · 708 Bytes

SQL Everyday #180

Books with NULL Ratings

Site: LeetCode
Difficulty per Site: Easy

Problem

Write a solution to find all books that have not been rated yet (i.e., have a NULL rating).

Return the result table ordered by book_id in ascending order. [Full Description]

Submitted Solution

-- Submitted Solution
SELECT
    book_id
    ,title
    ,author
    ,published_year
FROM books
WHERE rating IS NULL
ORDER BY book_id ASC
;

Site Solution

-- LeetCode Solution 
-- None

Notes

TBD

NB

TBD

Go to Index
Go to Overview