Is there a chance to show only one row if there are any rows with same values?
I’ve the following scenario:
ID | Column A | Column B | Column C
1 | 2 | ‘test’ | 5
2 | 3 | ‘test’| 6
3 | 2 | ‘test’| 5
In this scenario I want only show the following resultset:
ID | Column A | Column B | Column C
1 | 2 | ‘test’ | 5
2 | 3 | ‘test’| 6
Thanks for your help.
Regards, pro
1 Answer