Saya ingin memilih di antara baris nilai tertinggi di mysql

select yt.id, yt.rev, yt.contents
    from YourTable yt
    where rev = 
        (select max(rev) from YourTable st where yt.id=st.id)
Nasty Nightingale