How to add 2 views together
if I have the following statements, how can I make a query that adding data from q to p, NOT join??? Thanks.
(select a,b,c
from table1
) p
(select a,b,c
from table2
) q
Veronica
0