Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.misc -> Can DATA type be NULL?
This seems like a stupid questions, but...
I have created a table that includes a 2 columns:
create table TEST (
id NUMBER
);
the following sql produces an error:
insert into test
(id)
VALUES
(1);
ORA-01400: cannot insert NULL into ("WWW"."TEST"."SAMPLEDATE")
Any help would be greatly appreciated.
Thanks.
Tal Golan
talgolan_at_optic-nerve.com
Received on Fri Oct 30 1998 - 21:13:28 CST