Starting to learn SQL, right now I'm using mysql to start off. Currently stuck on one problem on my SQL homework in which I have to:
Show all genres in which there is at least one title. List each genre only once.
Tried using command line:
SELECT DISTINCT Genre, Title, FROM Titles;
Does not give me my desired result.

Can anyone please show me, what I'm doing wrong here?