Site: LeetCode
Difficulty per Site: Easy
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
SELECT
book_id
,title
,author
,published_year
FROM books
WHERE rating IS NULL
ORDER BY book_id ASC
;
-- LeetCode Solution
-- None
TBD
TBD