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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Finding column with same value in another column

Status
Not open for further replies.

DarVar

Programmer
Mar 14, 2006
10
IE
I have a table with three coluumns
id|name|label

Given the label I want an sql statement to find distinct names with the same label

Thanks in advance.
 
Something like this ?
SELECT DISTINCT name
FROM yourTable
WHERE label = 'yourLabel'

Or this ?
SELECT label, name
FROM yourTable
GROUP BY label, name

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top