The given SQL creates a Movie table and inserts some movies. The SELECT statement selects all movies. Modify the SELECT statement to select movies with the word 'star' somewhere in the title. Run your solution and verify the result table shows just the movies Rogue One: A Star Wars Story, Star Trek and Stargate.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
### Database Development and Management
#### Section 3.1: Special Operators and Clauses

---

### 3.1.4: Select Movie Titles with LIKE
**Participation Activity**

The given SQL creates a Movie table and inserts some movies. The `SELECT` statement selects all movies. Modify the `SELECT` statement to select movies with the word 'star' somewhere in the title.

**Objective:**

- Modify the `SELECT` statement to filter movies that have 'star' in their title.
- Run your solution and verify the result table shows just the movies "Rogue One: A Star Wars Story", "Star Trek" and "Stargate".

**SQL Code:**

```sql
1   CREATE TABLE Movie (
2       ID INT AUTO_INCREMENT,
3       Title VARCHAR(100),
4       Rating CHAR(5) CHECK (Rating IN ('G', 'PG', 'PG-13', 'R')),
5       ReleaseDate DATE,
6       PRIMARY KEY (ID)
7   );
8   
9   INSERT INTO Movie (Title, Rating, ReleaseDate) VALUES
10      ('Rogue One: A Star Wars Story', 'PG-13', '2016-12-16'),
11      ('Star Trek', 'PG-13', '2009-05-08'),
12      ('The Dark Knight', 'PG-13', '2008-07-18'),
13      ('Stargate', 'PG-13', '1994-10-28'),
14      ('Avengers: Endgame', 'PG-13', '2019-04-26');
15   
16   -- Modify the SELECT statement:
17   SELECT
18      *
19   FROM Movie;
```

**Instructions:**

1. **Create the Movie Table:** The script starts with creating a table named `Movie` with columns `ID`, `Title`, `Rating`, and `ReleaseDate`.
2. **Insert Movies:** It then inserts five movies into the table.
3. **Modify the SELECT Statement:** You need to modify the `SELECT` statement to filter the movies where the title contains the word 'star'.
4. **Run and Verify:** Execute the script and verify the output.

#### Steps to Modify the SELECT Statement:

1. To filter movie titles that contain the word 'star', use the `LIKE` operator.
2. The modified `SELECT` statement should look like this:

```sql
SELECT
    *
FROM Movie
Transcribed Image Text:### Database Development and Management #### Section 3.1: Special Operators and Clauses --- ### 3.1.4: Select Movie Titles with LIKE **Participation Activity** The given SQL creates a Movie table and inserts some movies. The `SELECT` statement selects all movies. Modify the `SELECT` statement to select movies with the word 'star' somewhere in the title. **Objective:** - Modify the `SELECT` statement to filter movies that have 'star' in their title. - Run your solution and verify the result table shows just the movies "Rogue One: A Star Wars Story", "Star Trek" and "Stargate". **SQL Code:** ```sql 1 CREATE TABLE Movie ( 2 ID INT AUTO_INCREMENT, 3 Title VARCHAR(100), 4 Rating CHAR(5) CHECK (Rating IN ('G', 'PG', 'PG-13', 'R')), 5 ReleaseDate DATE, 6 PRIMARY KEY (ID) 7 ); 8 9 INSERT INTO Movie (Title, Rating, ReleaseDate) VALUES 10 ('Rogue One: A Star Wars Story', 'PG-13', '2016-12-16'), 11 ('Star Trek', 'PG-13', '2009-05-08'), 12 ('The Dark Knight', 'PG-13', '2008-07-18'), 13 ('Stargate', 'PG-13', '1994-10-28'), 14 ('Avengers: Endgame', 'PG-13', '2019-04-26'); 15 16 -- Modify the SELECT statement: 17 SELECT 18 * 19 FROM Movie; ``` **Instructions:** 1. **Create the Movie Table:** The script starts with creating a table named `Movie` with columns `ID`, `Title`, `Rating`, and `ReleaseDate`. 2. **Insert Movies:** It then inserts five movies into the table. 3. **Modify the SELECT Statement:** You need to modify the `SELECT` statement to filter the movies where the title contains the word 'star'. 4. **Run and Verify:** Execute the script and verify the output. #### Steps to Modify the SELECT Statement: 1. To filter movie titles that contain the word 'star', use the `LIKE` operator. 2. The modified `SELECT` statement should look like this: ```sql SELECT * FROM Movie
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 4 images

Blurred answer
Knowledge Booster
Intermediate SQL concepts
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education