I need a query to make a Select over table1 and table2. I want them to appear as a common result, but without any connection there is no value from table 1 that corresponds with any value from table 2. So if a result was from table1 it should contain the values table1.a , table1.b, table1.c if it comes from table2 it should have table2.d, table2.e, table2.f with the a, b, c-values empty.
SELECT * FROM table1, table2
...doesn't help me because it always makes connections, connects result of table1 and table2 in one result. I need to have them separate, each result its own row.
Is it simple, difficult or impossible?