I have a table as follows
SeriesVariables_ID SeriesVariables_Label SeriesVariables_Value Series_ID
143 Batch Number Test20PassAll 28
144 SerialNo SIMTEST 28
145 Seg Pull Date 20/1/2014 28
146 Seg Pull Time 101010 28
147 Batch Number Test20PassAll 28
148 SerialNo SIMTEST 28
149 Seg Pull Date 20/1/2014 28
150 Seg Pull Time 101010 28
151 Batch Number Test20PassAll 7
152 SerialNo SIMTEST2 7
153 Seg Pull Date 20/2/2014 7
154 Seg Pull Time 202020 7
What I would like is to keep the order of the table and remove the duplicates. The result will look something like this
SeriesVariables_ID SeriesVariables_Label SeriesVariables_Value Series_ID
143 Batch Number Test20PassAll 28
144 SerialNo SIMTEST 28
145 Seg Pull Date 20/1/2014 28
146 Seg Pull Time 101010 28
151 Batch Number Test20PassAll 7
152 SerialNo SIMTEST2 7
153 Seg Pull Date 20/2/2014 7
154 Seg Pull Time 202020 7
Any help is greatly appreciated!