I have two tables that has the same columns numbers and names and I want to join its columns.
I have this table called inicial_dolares
And have this other table called inicial_cordobas
I am looking for this result
I've tried do this with joins but does not work. the common column is id_arqueo is a integer. and I tried this SQL union but vertically but does not work.
SELECT   IC.id_arqueo,
       IC.id_detalle,
       IC.descripcion,
       IC.denominacion,
       IC.cantidad,
       IC.total,
       ID.id_arqueo,
       ID.id_detalle,
       ID.descripcion,
       ID.denominacion,
       ID.cantidad,
       ID.total 
FROM dbo.inicial_cordobas IC 
 LEFT JOIN  dbo.inicial_dolares ID 
 ON ID.id_arqueo = IC.id_arqueo 
--this query returns to me 168 rows because the join looks for coincidence and 
--one table has 14 and the other has 12 rows.



 
     
     
    