Refer to the sample tables and data below. Tables: people (id(pk), firstname, lastname, zip(fk)) zip_code (zip(pk), city, state) mysql> select * from people; | id | firstname | lastname | zip +-- | McFly Jennifer | Parker Lorraine | McFly Tannen | 1 | Marty | 2 | 45001 33647 33647 33647 | 07005 | 3 | | 4 | Biff | 5 | George | McFly 5 rows in set (0.01 sec) mysql> select from zip_code; | zip | city | state | 45001 New York | NY 07005 New Jersey | NJ FL 33647 Tampa | 33765 | Clearwater | FL 4 rows in set (0.01 sec) How many rows and columns will the result set from the following command have? SELECT zip FROM people UNION ALL SELECT zip FROM zip_code; (a) Number of rows: 4 rows foreign key references zip_code(zip) (b) Number of columns: 1 column How many rows and columns will the result set from the following command have? SELECT zip FROM people UNION SELECT state FROM zip_code; (c) Number of rows: 5 rows (d) Number of columns: 9 columns

Oracle 12c: SQL
3rd Edition
ISBN:9781305251038
Author:Joan Casteel
Publisher:Joan Casteel
Chapter3: Table Creation And Management
Section: Chapter Questions
Problem 2HOA: Create a new table containing these four columns: Emp#, Lastname, Firstname, and Job_class. The...
icon
Related questions
Question
Refer to the sample tables and data below.
Tables:
people (id(pk), firstname, lastname, zip(fk))
zip_code (zip(pk), city, state)
mysql> select * from people;
| id | firstname | lastname | zip
+--
| McFly
Jennifer | Parker
Lorraine | McFly
Tannen
| 1 | Marty
|
2 |
45001
33647
33647
33647
| 07005
| 3 |
| 4 |
Biff
| 5 | George
| McFly
5 rows in set (0.01 sec)
mysql> select from zip_code;
| zip | city
| state |
45001
New York | NY
07005
New Jersey | NJ
FL
33647 Tampa
| 33765 | Clearwater | FL
4 rows in set (0.01 sec)
How many rows and columns will the result set from the following command have?
SELECT zip FROM people UNION ALL SELECT zip FROM zip_code;
(a) Number of rows: 4 rows
foreign key references zip_code(zip)
(b) Number of columns: 1 column
How many rows and columns will the result set from the following command have?
SELECT zip FROM people UNION SELECT state FROM zip_code;
(c) Number of rows: 5 rows
(d) Number of columns: 9 columns
Transcribed Image Text:Refer to the sample tables and data below. Tables: people (id(pk), firstname, lastname, zip(fk)) zip_code (zip(pk), city, state) mysql> select * from people; | id | firstname | lastname | zip +-- | McFly Jennifer | Parker Lorraine | McFly Tannen | 1 | Marty | 2 | 45001 33647 33647 33647 | 07005 | 3 | | 4 | Biff | 5 | George | McFly 5 rows in set (0.01 sec) mysql> select from zip_code; | zip | city | state | 45001 New York | NY 07005 New Jersey | NJ FL 33647 Tampa | 33765 | Clearwater | FL 4 rows in set (0.01 sec) How many rows and columns will the result set from the following command have? SELECT zip FROM people UNION ALL SELECT zip FROM zip_code; (a) Number of rows: 4 rows foreign key references zip_code(zip) (b) Number of columns: 1 column How many rows and columns will the result set from the following command have? SELECT zip FROM people UNION SELECT state FROM zip_code; (c) Number of rows: 5 rows (d) Number of columns: 9 columns
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 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
  • SEE MORE QUESTIONS
Recommended textbooks for you
Oracle 12c: SQL
Oracle 12c: SQL
Computer Science
ISBN:
9781305251038
Author:
Joan Casteel
Publisher:
Cengage Learning
A Guide to SQL
A Guide to SQL
Computer Science
ISBN:
9781111527273
Author:
Philip J. Pratt
Publisher:
Course Technology Ptr