table(name,age)
need to find top 2 that are distinct by age.
error check: if two names are the same go to next top age).
table(name,age)
A 17
A 17 <<error
B 14
C 16
D 16
got a table like that and
select distinct top 2 age from table, returns:
A 17
A 17
--
Sent by 3 from yahoo subdomain of com
This is a spam protected message. Please answer with reference header.
Posted via http://www.usenet-replayer.com
need to find top 2 that are distinct by age.
error check: if two names are the same go to next top age).
table(name,age)
A 17
A 17 <<error
B 14
C 16
D 16
got a table like that and
select distinct top 2 age from table, returns:
A 17
A 17
--
Sent by 3 from yahoo subdomain of com
This is a spam protected message. Please answer with reference header.
Posted via http://www.usenet-replayer.com
Comment