First page Back Continue Last page Image
More Advanced SQL
- The Idea of a SQL Query is to provide the useful information while filtering out the information you do not want
SELECT title, yearMade
FROM Movies
WHERE mainStar = “Martin Sheen”
AND supportStar = “Harrison Ford”
AND yearMade = “1979”;