The data in this table is as follows: Team Opponent Tigers Dragons Carp Swallows Bay Stars Marines Ham Fighters The latest scores from the Japanese Baseball League are in the table with schem Scores(Team, Opponent, RunsFor, RunsAgainst) Lions Tigers Swallows Giants Hawks Buffaloes O a. Hawks Giants Hawks Buffaloes O b. Dragons O c. Buffaloes d. Giant Golden Eagles Dragons Carp Bay Stars Marines Ham Fighters RunsFor 5 1 Bay Stars 3 6 3 Tigers Ham Fighters 4 2 5 1 8 RunsAgainst 3 5 6 Golden Eagles Lions 12 What is the result of executing the following query on this data? 1362 4 2 5 1 8 6 Identify, in the list below, a row of the result. Marines SELECT Team, Opponent FROM Scores WHERE Team LIKE '% %' OR Opponent LIKE '_i%';

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
The latest scores from the Japanese Baseball League are in the table with schema:

**Scores(Team, Opponent, RunsFor, RunsAgainst)**

### Data Table:

| Team           | Opponent      | RunsFor | RunsAgainst |
|----------------|---------------|---------|-------------|
| Dragons        | Tigers        | 5       | 3           |
| Carp           | Swallows      | 4       | 6           |
| Bay Stars      | Giants        | 2       | 1           |
| Marines        | Hawks         | 1       | 3           |
| Ham Fighters   | Buffaloes     | 8       | 6           |
| Lions          | Golden Eagles | 3       | 12          |
| Tigers         | Dragons       | 8       | 2           |
| Swallows       | Carp          | 6       | 3           |
| Giants         | Bay Stars     | 1       | 2           |
| Hawks          | Marines       | 3       | 5           |
| Buffaloes      | Ham Fighters  | 6       | 8           |
| Golden Eagles  | Lions         | 12      | 1           |

### Query:

What is the result of executing the following query on this data?
```sql
SELECT Team, Opponent
FROM Scores
WHERE Team LIKE '%i%' OR Opponent LIKE '_i%';
```

### Explanation:

This SQL query selects the Team and Opponent from the Scores table where either the Team name contains the letter 'i' or the Opponent name starts with the letter 'i'.

### Identification Task:

Identify, in the list below, a row of the result:

- a. Hawks - Marines
- b. Dragons - Tigers
- c. Buffaloes - Ham Fighters
- d. Giant - Bay Stars

From the dataset provided, apply the SQL query filtering criteria:

- Team names with '%i%' (which means it contains 'i'): Lions, Tigers, Giants, Hawks, Marines
- Opponent names with '_i%' (which means it starts with 'i'): Lions, Giants

After applying this filter, possible results include rows where either Team or Opponent meets the criteria. Using this information:

- Hawks (Team) and Marines (Opponent) contains 'i'.
  
Therefore, the correct answer is:

**a. Hawks - Marines**
Transcribed Image Text:The latest scores from the Japanese Baseball League are in the table with schema: **Scores(Team, Opponent, RunsFor, RunsAgainst)** ### Data Table: | Team | Opponent | RunsFor | RunsAgainst | |----------------|---------------|---------|-------------| | Dragons | Tigers | 5 | 3 | | Carp | Swallows | 4 | 6 | | Bay Stars | Giants | 2 | 1 | | Marines | Hawks | 1 | 3 | | Ham Fighters | Buffaloes | 8 | 6 | | Lions | Golden Eagles | 3 | 12 | | Tigers | Dragons | 8 | 2 | | Swallows | Carp | 6 | 3 | | Giants | Bay Stars | 1 | 2 | | Hawks | Marines | 3 | 5 | | Buffaloes | Ham Fighters | 6 | 8 | | Golden Eagles | Lions | 12 | 1 | ### Query: What is the result of executing the following query on this data? ```sql SELECT Team, Opponent FROM Scores WHERE Team LIKE '%i%' OR Opponent LIKE '_i%'; ``` ### Explanation: This SQL query selects the Team and Opponent from the Scores table where either the Team name contains the letter 'i' or the Opponent name starts with the letter 'i'. ### Identification Task: Identify, in the list below, a row of the result: - a. Hawks - Marines - b. Dragons - Tigers - c. Buffaloes - Ham Fighters - d. Giant - Bay Stars From the dataset provided, apply the SQL query filtering criteria: - Team names with '%i%' (which means it contains 'i'): Lions, Tigers, Giants, Hawks, Marines - Opponent names with '_i%' (which means it starts with 'i'): Lions, Giants After applying this filter, possible results include rows where either Team or Opponent meets the criteria. Using this information: - Hawks (Team) and Marines (Opponent) contains 'i'. Therefore, the correct answer is: **a. Hawks - Marines**
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps

Blurred answer
Knowledge Booster
Decision Table
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
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