I have two columns of coaches names:
coach1
JOHN
JACOB
MARY
coach2
JOHN
JACOB
HENRY
I would like to select all DISTINCT values between the two columns.
So that my SELECT statement will read,
JOHN
JACOB
MARY
HENRY
with no duplicates. Any suggestions as to the most efficient way to do this?