Hi Guys,
Im a bit of a noob at this and im trying to work out how to show the hoses that have the same length as another one. This is as close as I got which all it shows is which hose lengths appear more than once. I used the Having count >1 because if it doesnt appear at least once it cant have another matching length. I think im thinking to hard about this. Any help would be appreciated.
cheers
SELECT hose.length
FROM hose
WHERE hose.length=(length)
GROUP BY length
HAVING Count(hose.length)>1;