MYSQL Select all where value is highest -


in mysql query, how can select of rows value highest example:

select      unix_timestamp(creation_date) `date`,             release_version        content       id = '1'  order    `date` desc 

this output example:

output

note: amount of rows same/different release_version variable , therefore can't use limit.

i want select release_version highest (3 in case)

how can this? thanks.

this as

select *    content  release_version = (select max(release_version) content) 

Comments

Popular posts from this blog

Perl - how to grep a block of text from a file -

delphi - How to remove all the grips on a coolbar if I have several coolbands? -

javascript - Animating array of divs; only the final element is modified -