0% found this document useful (0 votes)
12 views

Assignment 5a

Uploaded by

rohit rajput
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views

Assignment 5a

Uploaded by

rohit rajput
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

*

the UNION operator on these two tables

SELECT * FROM Employee_details1


UNION
SELECT * FROM Employee_details2

-- 4. Apply the INTERSECT operator on these two tables

SELECT * FROM Employee_details1


INTERSECT
SELECT * FROM Employee_details2

-- 5. Apply the EXCEPT operator on these two tables

SELECT * FROM Employee_details1


EXCEPT
SELECT * FROM Employee_details2

You might also like