I'm having trouble solving the following SQL requests:
1) "Give the original name and year, also the current name and year, and the studio of the films that were made before '1960' then remade after '2000'."
2) "Get the filmname of all films created before ‘1951’ and remade after ‘2000’"
There are several tables but I'm assuming that only 2 are needed: 'films' and 'remakes'
'films' attributes: filmid, filmname, year, director, studio
'remakes' attributes: filmid, title, year, priorfilm, prioryear
My understanding is that remakes are included in films so the priorfilm in 'remakes' table corresponds to a filmid in the 'films' table. I'm having trouble linking the two to be able to place the year conditions.