Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> DECODE and boolean-expression

DECODE and boolean-expression

From: Alexander Mueller <millerax_at_hotmail.com>
Date: Tue, 24 Jan 2006 21:22:11 +0100
Message-ID: <43d68d08$0$21030$9b4e6d93@newsread2.arcor-online.net>


Hi

how can i use Decode if I want to evaluate an boolean expression? I want to convert an Access-SQL-Statement using IIF:

        IIf (Val > 100, ID, 9999) As ID

How can I check if Val is bigger then 100 with Decode, my pseudo code looks like:

        Decode (Val > 100, true, ID, 9999) As ID

but what's the equivalent for 'true' in PL/SQL?

Mfg,
Alex Received on Tue Jan 24 2006 - 14:22:11 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US