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

c++ - Function signature as a function template parameter -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -

How to call a javascript function after the page loads with a chrome extension? -