Freelancers Network
 
skill list top cap
Homepage
Join the Freelancer's Network
Update your details
Find a freelancer
Post a project
Find a project
Projects Archive
Post a job
Find a job
Jobs Archive
See Dan's Pages
See Andy's Pages
Link to this site
Resources
Join/Leave Forum
Forum Messages
+Additions+ Adverts
Advertising
Contact Us
Subscribe to our newsletter - enter your email address and hit return
Freelancers.net is owned and operated by Andy Stowell and Dan Winchester
skill list end cap
guru web hostcom

Find me again on Freelancers.net

Re: FN-FORUM: Mysql syntax help

date posted 1st May 2008 16:11

> On Thu, 2008-05-01 at 16:17 +0000, Nigel Rogers wrote:
> > Hi, I think this is a simple question:
> >
> >
> > I have a simple query that requests the 3 most recent album entries
> > from a mysql database
> >
> > $maxRows_Albums = 3;
> >
> >
> > which i order by recent first...
> >
> > $query_Albums = "SELECT * FROM albumlist ORDER BY id DESC";
> >
> >
>
> Is id always greater for later entries? (You'd get that if you had set
> the autoincrement attribute on that field). If so then you'd get what
> you want by selecting all but the largest id entry and then limiting
> your results to the next three. So something like:
>
> SELECT * FROM albumlist where id < ( select max(id) from albumlist )
> order BY id DESC limit 3
>
> (the limit 3 is mysql dialect)
>

Actually, the limit 2,3 solution other posters suggested is both simpler
and cleaner than this (if you're using Mysql). Didn't know you could do
that...

Graham




Messages by Day
May 31st 2008
May 30th 2008
May 29th 2008
May 28th 2008
May 27th 2008
May 26th 2008
May 25th 2008
May 24th 2008
May 23rd 2008
May 22nd 2008
May 21st 2008
May 20th 2008
May 19th 2008
May 18th 2008
May 17th 2008
May 16th 2008
May 15th 2008
May 14th 2008
May 13th 2008
May 12th 2008
May 11th 2008
May 10th 2008
May 9th 2008
May 8th 2008
May 7th 2008
May 6th 2008
May 5th 2008
May 4th 2008
May 3rd 2008
May 2nd 2008
May 1st 2008


Messages by Month
July 2008
June 2008
May 2008
April 2008
March 2008
February 2008
January 2008


Messages by Year
2008
2007
2006
2005
2004
2003
2002
2001
2000