two Queries

M

Melinda

Is there a specific join to bring in all data from two queries?

Thanks,
Melinda
 
S

Stefan Hoffmann

hi Melinda,
Is there a specific join to bring in all data from two queries?
Yes, it is called a cross join. It returns the cartesian product of the
involved tables or queries:

SELECT A.*, B.*
FROM A, B


mfG
--> stefan <--
 
Top