A Guide to SQL
A Guide to SQL
9th Edition
ISBN: 9781111527273
Author: Philip J. Pratt
Publisher: Course Technology Ptr
bartleby

Concept explainers

Question
Book Icon
Chapter 5, Problem 7RQ
Program Plan Intro

Consider the below two tables for all the “UNION”, “INTERSECT”, and “MINUS” operations.

Consider two tables:

Table creation:

CREATE TABLE EMPLOYEE(NAME VARCHAR(15));

CREATE TABLE EMPLOYEE_1(NAME VARCHAR(15));

Inserting values:

INSERT INTO EMPLOYEE VALUES("Alice Cordoza");

INSERT INTO EMPLOYEE VALUES("John Cretchakoy");

INSERT INTO EMPLOYEE VALUES("Anne McDonald");

INSERT INTO EMPLOYEE_1 VALUES("John Cretchakoy");

INSERT INTO EMPLOYEE_1 VALUES("Mary Chen");

Explanation of Solution

INTERSECTset operator:

The INTERSECT set operator is used to combine the output of two or more than two queries and produce a result. The produced result contains the values (rows) that are common in both the tables.

Syntax: QUERYINTERSECTQUERY;

INTERSECT query:

SELECT * FROM EMPLOYEE INTERSECT SELECT * FROM EMPLOYEE_1;

Explanation of Solution

MINUS set operator:

The MINUS set operator is used to combine the output of two or more than two queries and produce a result. The produced result contains the values (rows) that appear in the first table but not in the second table. The word “EXCEPT” can also be used in the place of “MINUS”.

Syntax: QUERYMINUSQUERY;

MINUS query 1:

SELECT * FROM EMPLOYEE MINUS SELECT ...

Explanation of Solution

Restrictions on the table:

In order to perform any of the operations like “UNION”, “INTERSECT”, and “MINUS” operations, the tables must be union-compatible...

Blurred answer
Students have asked these similar questions
I need help creating the network diagram and then revising it for the modified activity times.
Activity No. Activity Time (weeks) Immediate Predecessors 1 Requirements collection 3 2 Requirements structuring 4 1 3 Process analysis 3 2 4 Data analysis 3 2 5 Logical design 50 3,4 6 Physical design 5 5 7 Implementation 6 6 c. Using the information from part b, prepare a network diagram. Identify the critical path.
Given the following Extended-BNF grammar of the basic mathematical expressions:  Show the derivation steps for the expression: ( 2 + 3 ) * 6 – 20 / ( 3 + 1 ) Draw the parsing tree of this expression. SEE IMAGE
Knowledge Booster
Background pattern image
Computer Science
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
Text book image
A Guide to SQL
Computer Science
ISBN:9781111527273
Author:Philip J. Pratt
Publisher:Course Technology Ptr
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781305627482
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781285196145
Author:Steven, Steven Morris, Carlos Coronel, Carlos, Coronel, Carlos; Morris, Carlos Coronel and Steven Morris, Carlos Coronel; Steven Morris, Steven Morris; Carlos Coronel
Publisher:Cengage Learning
Text book image
Oracle 12c: SQL
Computer Science
ISBN:9781305251038
Author:Joan Casteel
Publisher:Cengage Learning