SESSION NAME: Joins and Unions-2.
QUESTION NAME: Unions All of two tables.
TABLE DESCRIPTION:
Write a Query to Join the following tables
Table 1 = Difficulty
Table 2 = hackers
Hint: Use Union All to add both the tables.
Table 1 = Difficulty
Table 2 = hackers
Hint: Use Union All to add both the tables.
CODE:
select * from Difficulty Union All select * from hackers;
0 Comments