I have this query in Access that I have to pass to SQL Server
INSERT INTO
Out_MTK ( Id_MTK, Fijo1, Fijo2)
SELECT
Aux_Mtk_Red_Familia.Expr1, Aux_Mtk_Red_Familia.Fijo1, Aux_Mtk_Red_Familia.Fijo2
FROM
Aux_Mtk_Red_Familia
The problem is that Aux_Mtk_Red_Family does not exist, it is a UNION of two tables
SELECT
*
FROM
Aux_Mtk_Red_Familia_Parte1
UNION ALL
SELECT
*
FROM
Aux_Mtk_Red_Familia_Parte2
How do I make the UNION query create a table for me so that I can concatenate the two queries in one?