Writing queries task 3/23

<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>
Can someone please tell me what I am doing wrong here?

<Below this line, add a link to the EXACT exercise that you are stuck at.>
https://www.codecademy.com/en/courses/learn-sql/projects/learn_sql_query_table

<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
select distinct name ‘bride’ from movies where genre= ‘drama’;
<In this course, it often helps to include a screenshot of your whole web browser – that lets everyone see what you see. If you wish to include a screenshot, add it below this line.>

<If you wish to copy/paste in your code, you can use this next section. This will allow others to copy/paste your code for testing – something that they won’t be able to do with just a screenshot.>

```

Replace this line with your code.

<do not remove the three backticks above>

The code below refers to task 3 which is selecting all the movies with the genre of ‘drama’
–SELECT * FROM movies WHERE genre = ‘drama’;
The code below here refers to task 4 where we want to select any movie that contains the phrase ‘bride’.
–SELECT * FROM movies WHERE name LIKE ‘%bride%’;

Hope this help your understanding.