Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Come combinare i risultati di due query in un unico set di dati

Ecco un esempio che esegue un'unione tra due tabelle completamente indipendenti:la tabella Student e la tabella Prodotti. Genera un output di 4 colonne:

select
        FirstName as Column1,
        LastName as Column2,
        email as Column3,
        null as Column4
    from
        Student
union
select
        ProductName as Column1,
        QuantityPerUnit as Column2,
        null as Column3,
        UnitsInStock as Column4
    from
        Products

Ovviamente lo modificherai per il tuo ambiente...