I have two tables like this:
Table1
with column N
N
---
1
2
3
4
5
And Table2
with column M
:
M
---
5
9
1
8
1
Finally, I want to combine these two data sets with the same count of rows and also, save source order like this result:
N M
------
1 5
2 9
3 1
4 8
5 1
Can anyone help me?