Beefy Boxes and Bandwidth Generously Provided by pair Networks vroom
Do you know where your variables are?
 
PerlMonks  

Re: MySQL question

by shadox (Priest)
on Mar 28, 2002 at 16:51 UTC ( [id://155126]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to MySQL question

If i understand you well ( i am half asleep ), what you want is a list of titles with the greatest version.
Something like this
+-------+---------+---------+ | title | doc_num | version | +-------+---------+---------+ | bar | 1234 | 9 | | foo | 1234 | 7 | | other | 2121 | 7 | +-------+---------+---------+
Well if it is right, all what you need is to change your ORDER BY, for a GROUP by.
SELECT title, doc_num, MAX(version) AS version from test GROUP BY titl +e; # For this example "test" is the table name


Failure is not an option - it is a privilege reserved for
those who do not try hard enough.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://155126]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.