From the following table, write a SQL query to find all reviewers who rated the movie ‘American Beauty’. Return reviewer name. Sample table: reviewer
- برمجة سي كيو ال sql
- 2021-09-03
- mhanasmh00489829403
الأجوبة
SELECT DISTINCT reviewer.rev_name
FROM reviewer, rating, movie
WHERE reviewer.rev_id = rating.rev_id
AND movie.mov_id = rating.mov_id
AND movie.mov_title = 'American Beauty';
Sample Output:
rev_name -------------------------------- Sasha Goldshtein (1 row)
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال