Hi friends,
I have a table which has many fields & say fld is one among those fields, i want to fetch unique records from that table without using loop statement.
Note: i dont want output as we get using delete adjacent duplicates.
Table before:
errorid | fld | Header 3 |
---|---|---|
001 | 123 | |
002 | 125 | |
003 | 129 | |
004 | 125 | |
005 | 126 | |
006 | 129 | |
007 | 125 | |
008 | 122 | |
009 | 121 | |
010 | 126 | |
011 | 124 | |
012 | 121 |
Expected table:
errorid | fld | Header 3 |
---|---|---|
001 | 123 | |
008 | 122 | |
011 | 124 |
Can you please help me with this. Thanks in advance