Hi
I have a "simple" problem with joining two tables.
These may be my tables
TABLE #1 TABLE#2
Id Descr Id Descr
1 A 1 A
1 A 2 B
when i join them i'd like to get :
RESULT TABLE
Id Descr
1 A
2 B
but when table are :
TABLE #1 TABLE#2
Id Descr Id Descr
1 A 1 A
1 A 1 A
i must get
RESULT TABLE
Id Descr
1 A
1 A
I hope this is clear.
How can i get this?
I have a "simple" problem with joining two tables.
These may be my tables
TABLE #1 TABLE#2
Id Descr Id Descr
1 A 1 A
1 A 2 B
when i join them i'd like to get :
RESULT TABLE
Id Descr
1 A
2 B
but when table are :
TABLE #1 TABLE#2
Id Descr Id Descr
1 A 1 A
1 A 1 A
i must get
RESULT TABLE
Id Descr
1 A
1 A
I hope this is clear.
How can i get this?