I have a table with data which consists of:
123 Mike 33333
123 Jones 88888
456 Smith 55555
456 Peter 7777
and I would like to show distinct rows of the first column based on the minimum value of the third column. Specifically, I would like a query to show only
123 Mike 33333
456 Smith 55555
I've tried any possible combination of the distinct/distinctrow clause I could come up with without any success.
I would appreciate any help.
123 Mike 33333
123 Jones 88888
456 Smith 55555
456 Peter 7777
and I would like to show distinct rows of the first column based on the minimum value of the third column. Specifically, I would like a query to show only
123 Mike 33333
456 Smith 55555
I've tried any possible combination of the distinct/distinctrow clause I could come up with without any success.
I would appreciate any help.