Hi David,

> Hello - I'm a relative newcomer to development with MySQL and am having a
> problem with ordering my query results...

    This is a general SQL question. Try this:

        ... ORDER BY time_created DESC, name LIMIT ...

    In general, you can't declare a clause twice, except for the JOIN
clauses, of course.

    For example, you cant type "... WHERE blah, blah WHERE blah, blah too"
nor repeat a GROUP BY, SORT, etc.

    May I suggest you to read the manual more carefully? ;-)

    Cheers,
    Jose Miguel.




-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to