Hello
I have a table created as result from complex condition matched as:
ID	ID_1	ID_2
ID: is identity col
ID_1: has 1:N relation with ID_2
ID_2: has 1:N relation with ID_1
sample:
ID	ID_1	ID_2	
..	700	201
..	700	300
..	201	700
..	300	700
I need to select column (ID_1, ID_2) select once:
700, 201 and 201,700 are the same row also,
700, 300 and 300, 700 are the same row
and must be select once, How to write select ?
Regards,
sasan.