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

Home -> Community -> Usenet -> comp.databases.theory -> Re: NULLs: theoretical problems?

Re: NULLs: theoretical problems?

From: -CELKO- <jcelko212_at_earthlink.net>
Date: Sat, 11 Aug 2007 21:10:16 -0700
Message-ID: <1186891816.828159.183330@57g2000hsv.googlegroups.com>


Try this for the casting of NULLs to data types:

CREATE VIEW Foobar (a, b, c)
AS
VALUES (CAST (NULL AS INTEGER),CAST (NULL AS REAL), CAST (NULL AS DATE)); There are several other place where you need this. Received on Sat Aug 11 2007 - 23:10:16 CDT

Original text of this message

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