EasyOutput prediction

UNION with mismatched column names

Given these tables:

employees:

emp_name
Alice

contractors:

contractor_name
Bob

A developer runs this query and checks the column header of the result. What is the column named?

SELECT emp_name FROM employees
UNION
SELECT contractor_name FROM contractors;

← → arrow keys to navigate

Sign in to save your progress.