You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

5 lines
225 B
SQL

/*8. Write a query in SQL to find the name of all reviewers who have rated their ratings with a NULL value. */
SELECT rev_name
FROM reviewer
INNER JOIN rating USING(rev_id)
WHERE rev_stars IS NULL;