Re: How to include an IF() statement in SQL?

From: Bob Cunningham <bcunn_at_oanet.com>
Date: 1998/09/02
Message-ID: <35eca229.78651855_at_news.oanet.com>#1/1


[Quoted] On Tue, 01 Sep 1998 17:30:40 -0700, Troy Perchotte <max_at_headroom.com> wrote:

>How do I include a condition within a select statement?
>Something like the following (only one that works):
>
>select if(customers.custid=customers.parentid,'',customers.name) as
>parent_name from customers;
>
>Troy Perchotte
>
>

[Quoted] [Quoted] You can use the DECODE function. E.g.:

[Quoted] SELECT DECODE(custid,parentid,NULL,name) parent_name FROM customers;

Bob Cunningham
bcunn_at_oanet.com Received on Wed Sep 02 1998 - 00:00:00 CEST

Original text of this message