D digs Registered User. Local time Today, 15:38 Joined Aug 16, 2004 Messages 20 Jan 26, 2005 #1 I have 2 queries and would like to put them together without putting them in a table is there a way to do this.
I have 2 queries and would like to put them together without putting them in a table is there a way to do this.
FoFa Registered User. Local time Today, 09:38 Joined Jan 29, 2003 Messages 3,672 Jan 26, 2005 #2 Union or Union All Select * from table1 UNION {All} Select * from table2 However they have the same number of columns and each column has to have the same datatype. Union will remove duplicate rows, Union All returns all rows.
Union or Union All Select * from table1 UNION {All} Select * from table2 However they have the same number of columns and each column has to have the same datatype. Union will remove duplicate rows, Union All returns all rows.