Re: Conversion from Sybase ASA

From: "Viorel Dragomir" <bc(at)vio(dot)ro>
To: "Richard Sydney-Smith" <richard(at)ibisaustralia(dot)com>, <pgsql-sql(at)postgresql(dot)org>
Subject: Re: Conversion from Sybase ASA
Date: 2003-09-09 07:06:36
Message-ID: 005701c376a0$ea9b5840$0600a8c0@fix.ro
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

select 'T' as src,(if tbon is null or tbon < '1900/12/12' or tbon > '1900/9/30' then 'U' else 'P' endif) as pres from ftrans

select 'T' as src,(CASE WHEN tbon is null or tbon < '1900/12/12' or tbon > '1900/9/30' THEN 'U' ELSE 'P' END) as pres from ftrans

I think it works in Oracle too :)
Pay attention at tbon < '1900/12/12'. Try to use conversion on date formats like to_date() or to_timestamp().

Good luck
----- Original Message -----
From: Richard Sydney-Smith
To: pgsql-sql(at)postgresql(dot)org
Sent: Tuesday, September 09, 2003 10:06 AM
Subject: [SQL] Conversion from Sybase ASA

In sybase I can use the following syntax:

select 'T' as src,(if tbon is null or tbon < '1900/12/12' or tbon > '1900/9/30' then 'U' else 'P' endif) as pres from ftrans

this returns two columns: src = 'T' and pres which has either the value 'U' or 'P'

how would I express this in postgresql?

thanks

Richard

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Richard Sydney-Smith 2003-09-09 07:06:40 Conversion from Sybase ASA
Previous Message R. van Twisk 2003-09-09 06:43:47 Re: plpgsql doesn't coerce boolean expressions to boolean