Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

SQL exercises on movie Database: Display the name and year of the movies

SQL movie Database: Basic Exercise-1 with Solution

1. From the following table, write a SQL query to find the name and year of the movies. Return movie title, movie release year.

Sample table: movie


Sample Solution:

SELECT mov_title, mov_year
FROM movie;

Sample Output:

                     mov_title                      | mov_year
----------------------------------------------------+----------
 Vertigo                                            |     1958
 The Innocents                                      |     1961
 Lawrence of Arabia                                 |     1962
 The Deer Hunter                                    |     1978
 Amadeus                                            |     1984
 Blade Runner                                       |     1982
 Eyes Wide Shut                                     |     1999
 The Usual Suspects                                 |     1995
 Chinatown                                          |     1974
 Boogie Nights                                      |     1997
 Annie Hall                                         |     1977
 Princess Mononoke                                  |     1997
 The Shawshank Redemption                           |     1994
 American Beauty                                    |     1999
 Titanic                                            |     1997
 Good Will Hunting                                  |     1997
 Deliverance                                        |     1972
 Trainspotting                                      |     1996
 The Prestige                                       |     2006
 Donnie Darko                                       |     2001
 Slumdog Millionaire                                |     2008
 Aliens                                             |     1986
 Beyond the Sea                                     |     2004
 Avatar                                             |     2009
 Seven Samurai                                      |     1954
 Spirited Away                                      |     2001
 Back to the Future                                 |     1985
 Braveheart                                         |     1995
(28 rows)

Relational Algebra Expression:

Relational Algebra Expression: Display the name and year of the movies.

Relational Algebra Tree:

Relational Algebra Tree: Display the name and year of the movies.

Practice Online


Movie database model

Query Visualization:

Duration:

Query visualization of Display the name and year of the movies - Duration

Rows:

Query visualization of Display the name and year of the movies - Rows

Cost:

Query visualization of Display the name and year of the movies - Cost

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: SQL BASIC exercises on movie Database
Next: From the following table, write a SQL query to find when the movie 'American Beauty' released. Return movie release year.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



SQL: Tips of the Day

SQL Server SELECT into existing table.

INSERT INTO dbo.TABLETWO
SELECT col1, col2
  FROM dbo.TABLEONE
 WHERE col3 LIKE @search_key

This assumes there's only two columns in dbo.TABLETWO - you need to specify the columns otherwise:

INSERT INTO dbo.TABLETWO
  (col1, col2)
SELECT col1, col2
  FROM dbo.TABLEONE
 WHERE col3 LIKE @search_key

Database: SQL Server

Ref: https://bit.ly/3y6tpA3