I have a table that is configured like this:
ID int Hash varchar OtherID int
Some sample data:
1 3pm6Qav1Vd 23 2 3pm6Qav1Vd 2 3 3pm6Qav1Vd 19 4 3pm6Qav1Vd 17 5 RSUBe2VBtl 2 6 3pm6Qav1Vd 4 7 3pm6Qav1Vd 21 8 RSUBe2VBtl 23 9 RSUBe2VBtl 19
I would like to be able to pull only the first line of each hash set:
1 3pm6Qav1Vd 23 5 RSUBe2VBtl 2
Each line will be the smallest identifier for each hash. I am using T-SQL on SQL Server 2005. I am not sure where to start from this.
source share