Hi
I have a union opertaion between two tables
SELECT
ID_1
,
name_1
,
surname_1
,
FROM
T_ONE
UNION
SELECT
ID_2
,
name_2
,
surname_2
FROM
TABLE_2
now I want to join the result of this JOIN operation with another one table or even with all TABLE_1.
How can I handle this new table result of the UNION.
for ex after the previous UNION:
RIGHT JOIN TABLE_3
ON TABLE_3
.ID_3
=XXXXXXXXXXXXXXXXXXXX
.ID_2
I really do not know what I need to put instead of the XXXXXXXXXXXXXXXX to andle the new table generated by the UNION.
thank