5 lines
225 B
MySQL
5 lines
225 B
MySQL
|
/*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;
|