I need to return a query that returns a distinct value in only one field but I need to display two other fields: Here is my data:
Run BNumber SNumber
84 KB743 17
95 KK546 13
95 HG435 55
56 AW546 33
I only want unique run numbers, so the record for 95 should only show the first. If I use the DESTINCT key work in the SELECT statement it still outputs multipule run numbers because the BNumber and SNumber are different. Any ideas?
Run BNumber SNumber
84 KB743 17
95 KK546 13
95 HG435 55
56 AW546 33
I only want unique run numbers, so the record for 95 should only show the first. If I use the DESTINCT key work in the SELECT statement it still outputs multipule run numbers because the BNumber and SNumber are different. Any ideas?