Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE>Not Null Syntax ---
RE>Not Null Syntax ---
Gregory,
You just redefine the column specification to be as nullable (NULL) rather than NOT NULL, i.e.,
ALTER TABLE [tablename] MODIFY ([columnname] [datatype] NULL);
I'm not sure if the [datatype] is required, but I have found that Oracle does not complain when it is specified.
From: list., ORACLE dm From: ORACLE database mailing list. Date: Tue, Jan 16, 1996 12:43 PM
The ALTER TABLE pages in the manual say it can be done but do not show the syntax.
Thanks.
Received on Tue Jan 16 1996 - 15:53:34 CST