I am new to oracle sql. I am trying to execute the following Query
SQL> select movie.movie_title, movie.release_year, cast.movie_title, cast.release_year
from MOVIE movie, CAST_MEMBER cast
*
ERROR at line 1:
ORA-00933: SQL command not properly ended
the query works If I don't join the actor table but I am trying to extract actor name from ACTOR table. I have looked at other problems but could not get it fixed. If someone could guide on where I am going wrong.
Thank you