Consider the below given query
SELECT column_name(s) FROM table1
command
SELECT column_name(s) FROM table2;
What should the database manager write in place of command to get distinct values from table1 and table2 of column_name(s)?
1
SET DIFFERENCE
2
DISTINCT
3
UNION
4
UNION ALL