SESSION NAME: Joins and Unions-2.

QUESTION NAME: Unions of two tables


TABLE DESCRIPTION:
Write a Query to Join the following tables

Table 1 = Difficulty
Table 2 = Departments

Hint: Use Union to add both the tables.

CODE:

select * from Difficulty Union select * from Departments;