I've been looking all over the Internet for a solution to this problem, but nobody seems to have asked this question before.
2 unrelated tables, x columns each. I want a very simple result: to have the 2 columns one next to each other, but with the rows corisponding (row1-row1, row2-row2).
I will elaborate in case it isn't clear to someone:
___________________
-What I want to do, is to put 2 columns one next to each other:
-table1.column1
-table2.column1
So the result would be something like this:
table1.column1.ROW1 - table2.column1.ROW1
table1.column1.ROW2 - table2.column1.ROW2
table1.column1.ROW3 - table2.column1.ROW3
table1.column1.ROW4 - table2.column1.ROW4
table1.column1.ROW5 - table2.column1.ROW5
..etc..
___________________
A query like "SELECT table1.column1, table2.column1 FROM table1, table2" won't give me the wanted result, as it outputs rows*rows.
IN CASE anyone is wondering why in the world I would need to put 2 unrelated columns together from 2 unrelated tables: My job is to go in a bank, take their databases with clients' information, and mask all the data (in a certain way, not randomly). In the end, I have the original Table of the bank and its perfect clone - the clone Table being populated by the masked data. At that point, the critical part kicks in:
- What I need to do is to compare column by column: 1 column from the original Table of the Bank with its clone - the same identical column, but with the masked data in it instead of the original data (which actually is a whole new column of a whole new Table).
In order to make sure that all the data has been masked properly, respecting all the criteria of the client (the bank), I need to put all the data from column X, right next to all the data from column Y, (row1-row1 ; row2-row2 ; etc).
What I currently do, is to take tens of printscreens and to compare them, which is wasting lots and lots and lots of time.
If anyone could come up with a solution to this problem I would eternally be grateful.
I should also mention that I have nothing to JOIN on, as all the data from table1 is completely different from all the data from table2, nothing in common.
THE SOLUTION has been provided by the user 'sstan', and it works perfectly. The query is:
select table1.COLUMN, table2.COLUMN
from (select rownum as rn1, table1.COLUMN from YOURTABLE1.COLUMN table1) table1
join (select rownum as rn2, table2.COLUMN from YOURTABLE2.COLUMN table2) table2
on table1.rn1 = table2.rn2;
As you adapt this query to your tables, keep in mind that you have to replace just the words I've written in 'CAPITAL' letters.
The query works perfectly on larger datasets as well. I've tested it on 100.000 rows, every row is in his place, the 'rownum' function does not alter them at all.
This is the best and fastest way to put 2 columns one right next to each other, with their rows matched, from 2 different tables (of 2 different users as well in my case), who have absolutely nothing in common to JOIN on.
There has to be something to 'JOIN' on. For example lets assume each row in both tables has a ClientID column