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:
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
Post a Comment