Web lists-archives.org

Re: Selecting my data first




On Mon, May 12, 2008 at 11:36 AM, Jake Conk <jake.conk@xxxxxxxxx> wrote:

>
> SELECT * FROM whiles WHERE owner_id=<my_id> first THEN SELECT * FROM
> files ORDER by file_id
>

Would this work?

SELECT *
FROM whiles
WHERE owner_id = <my_id>
ORDER BY owner_id = <my_id> DESC, file_id