यह उच्चतम से मेल खाएगा, और संबंधों को भी वापस लाएगा।
select sd.*
from sampleData sd
inner join (
select PollID, max(votes) as MaxVotes
from sampleData
group by PollID
) x on
sd.PollID = x.PollID and
sd.Votes = x.MaxVotes