Re: confused by mysql command:select * ..order by if(death is null,0,1),death;

Fabian Schmidt <[email protected]>
Newsgroups gmane.comp.db.mysql.java
Message-ID <Pine.GSO.4.61.0608041028450.13671@doesen5.informatik.uni-leipzig.de>
Am 03.08.06 schrieb lanxiazhi:

> select first_name,last_name,death from president
> order by
>  if(death is null,0,1),
>  death desc;

I suppose you look for:

  order by
   if(death is null,0,1) DESC,
   death desc;


Ciao,

Fabian.


-- 
MySQL Java Mailing List
For list archives: http://lists.mysql.com/java
To unsubscribe:    http://lists.mysql.com/[email protected]
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.