Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Can DATA type be NULL?
Tal,
I successfully created the table and did the insert as you listed in your
post.
What tool did you use to create the table? SQLPlus? Some other tool?
SQL> create table TEST
2 (id NUMBER,
3* sampleDate DATE )
SQL> /
Table created.
SQL> insert into test
2 (id)
3 VALUES (1);
1 row created.
![]() |
![]() |