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 -> Re: Null dates in a union query question

Re: Null dates in a union query question

From: Rajesh M <raju_m_at_hotmail.com>
Date: Wed, 23 Sep 1998 10:07:47 +0200
Message-ID: <3608ac26.0@news.euroconnect.dk>


Try this one :

create or replace view x as
select 'pete' NAME, to_date(null, <date-format>) ADATE from dual
union all
select null NAME, to_date(sysdate, <date-format>) ADATE from dual;

Rajesh

PMG wrote in message <3608873E.4372F939_at_2xtreme.net>...
>Can somebody tell me how to get around this problem:
>
>create or replace view x as
> select 'pete' NAME,
> null ADATE
> from dual
>union all
> select null NAME,
> sysdate ADATE
> from dual
>
>I get ORA-01790: expression must have same datatype as corresponding
>expression in line 3 of the SQL.
>
>In other words, how do I insert a NULL into a column which will be a
>date field.
>
>TIA
>
>Pete
>
Received on Wed Sep 23 1998 - 03:07:47 CDT

Original text of this message

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