Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

select only the first row in a group

Status
Not open for further replies.

wbooster

Computer
Joined
Feb 4, 2007
Messages
2
Location
TW
If I have data

a 1
a 2
a 3
b 3
b 2
c 1
c 2
d 2

I only want to select a, b, c, and d's first record.like
a 1
b 3
c 1
d 2

how do I do it
 
Maybe this is convenient:

select <col1>, min(<col2>) from <table> group by <col1>

Results:
a 1
b 2
c 1
d 2
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top