Sorry I am really a newbie into programming and I am trying to merge two different columns into one column using sql but if it is not possible can it be done using sql code in c#? I have two tables Product1 and Product2, these tables both have CatID.
For Product1, the CatID contains
1
2
3
For Product2, the CatID contains
1
2
3
4
5
The results that I am getting using union is if they have both similar id it will be merge into one and using concat it will duplicate into like
1 1
2 2
3 3
4
5
But the results that I want is the 1 to 3 is from product1 and then the 4 to 8 from product2 like it will continue on counting with no duplicate:
1
2
3
4
5
6
7
8
Is this possible?